From 483e4a9cb8030571697bb1790560e2d1dd6d5c10 Mon Sep 17 00:00:00 2001 From: tdro Date: Fri, 6 May 2022 05:44:08 -0400 Subject: themes/default/layouts: Remove garbled entities --- static/js/fixedsearch.ts | 7 ++----- static/js/index.js | 6 ++---- themes/default/layouts/_default/index.json | 4 ++-- themes/default/layouts/_default/rss.xml | 2 +- 4 files changed, 7 insertions(+), 12 deletions(-) diff --git a/static/js/fixedsearch.ts b/static/js/fixedsearch.ts index 3788cb3..2b0abda 100644 --- a/static/js/fixedsearch.ts +++ b/static/js/fixedsearch.ts @@ -170,17 +170,14 @@ } else { dropdown.removeAttribute("hidden"); for (const string in results.slice(0, 10)) { - const decode = document.createElement("textarea"); - decode.innerHTML = results[string].obj.title; - let highlight = fuzzysort.highlight( - fuzzysort.single(term, decode.value), + fuzzysort.single(term, results[string].obj.title), "", "", ); if (highlight === null) { - highlight = decode.value; + highlight = results[string].obj.title; } items = items + diff --git a/static/js/index.js b/static/js/index.js index 7fc5785..62615e5 100644 --- a/static/js/index.js +++ b/static/js/index.js @@ -408,11 +408,9 @@ } else { dropdown.removeAttribute("hidden"); for(const string in results.slice(0, 10)){ - const decode = document.createElement("textarea"); - decode.innerHTML = results[string].obj.title; - let highlight = fuzzysort.highlight(fuzzysort.single(term, decode.value), "", ""); + let highlight = fuzzysort.highlight(fuzzysort.single(term, results[string].obj.title), "", ""); if (highlight === null) { - highlight = decode.value; + highlight = results[string].obj.title; } items = items + `
  • diff --git a/themes/default/layouts/_default/index.json b/themes/default/layouts/_default/index.json index ae1e793..b5ec06c 100644 --- a/themes/default/layouts/_default/index.json +++ b/themes/default/layouts/_default/index.json @@ -10,8 +10,8 @@ { "id": "{{ md5 $data.Permalink }}", "url": "{{ $data.Permalink }}", - "title": "{{ htmlEscape $data.Summary }}", - "summary": "{{ $data.Summary }}", + "title": "{{ $data.Summary | htmlUnescape }}", + "summary": "{{ $data.Summary | htmlUnescape }}", "date_modified": "{{ $data.Date | time.Format "2006-01-02T15:04:05Z" }}", "date_published": "{{ $data.PublishDate | time.Format "2006-01-02T15:04:05Z" }}", "_metadata": { diff --git a/themes/default/layouts/_default/rss.xml b/themes/default/layouts/_default/rss.xml index 4570a98..eac25c4 100644 --- a/themes/default/layouts/_default/rss.xml +++ b/themes/default/layouts/_default/rss.xml @@ -20,7 +20,7 @@ {{- range $pages -}} {{ if and (ne .Params.hidden true) (not .Params.Unlisted) (not .ExpiryDate) }} - {{ htmlEscape .Summary }} + {{ .Summary | htmlUnescape }} {{ .Permalink }} {{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }} {{ .Permalink }} -- cgit v1.2.3