Fix search excerpts that run together

This commit is contained in:
Michael Rose 2018-03-20 11:51:49 -04:00
parent c56818ccbf
commit d8bf02262a
2 changed files with 19 additions and 2 deletions

View File

@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Fixed ### Fixed
- Fix Firefox [flexbox bug](https://bugzilla.mozilla.org/show_bug.cgi?id=939897) when printing pages. - Fix Firefox [flexbox bug](https://bugzilla.mozilla.org/show_bug.cgi?id=939897) when printing pages.
- Fix search excerpts that run together because of implied spaces.
## [1.3.1] - 2018-02-16 ## [1.3.1] - 2018-02-16

View File

@ -14,9 +14,25 @@ var store = [
"title": {{ doc.title | jsonify }}, "title": {{ doc.title | jsonify }},
"excerpt": "excerpt":
{%- if site.search_full_content == true -%} {%- if site.search_full_content == true -%}
{{ doc.content | strip_html | strip_newlines | jsonify }}, {{ doc.content |
replace:"</p>", " " |
replace:"</h1>", " " |
replace:"</h2>", " " |
replace:"</h3>", " " |
replace:"</h4>", " " |
replace:"</h5>", " " |
replace:"</h6>", " "|
strip_html | strip_newlines | jsonify }},
{%- else -%} {%- else -%}
{{ doc.content | strip_html | strip_newlines | truncatewords: 50 | jsonify }}, {{ doc.content |
replace:"</p>", " " |
replace:"</h1>", " " |
replace:"</h2>", " " |
replace:"</h3>", " " |
replace:"</h4>", " " |
replace:"</h5>", " " |
replace:"</h6>", " "|
strip_html | strip_newlines | truncatewords: 50 | jsonify }},
{%- endif -%} {%- endif -%}
"categories": {{ doc.categories | jsonify }}, "categories": {{ doc.categories | jsonify }},
"tags": {{ doc.tags | jsonify }}, "tags": {{ doc.tags | jsonify }},