Skip to content
Snippets Groups Projects

Fix bug in paths replacement for search js

Merged Uwe Jandt (DESY, HIFIS) requested to merge fix-bug-paths-for-search-js into master
Files
2
+ 2
2
@@ -10,7 +10,7 @@
{
"title" : "{{ post.title | escape }}",
"url" : "{{ baseurl }}{{ post.url }}",
"url" : "{{ base_url }}{{ post.url }}",
"category" : "{{ post.category }}",
"tags" : "{{ post.tags | join: ', ' }}",
"date" : "{{ post.date }}",
@@ -25,7 +25,7 @@
"title" : "{{ page.title | escape }}",
"category" : "{{ page.category }}",
"tags" : "{{ page.tags | join: ', ' }}",
"url" : "{{ baseurl }}{{ page.url }}",
"url" : "{{ base_url }}{{ page.url }}",
"date" : "{{ page.date }}",
"content" : "{{ page.content | strip_html | strip_newlines | remove_chars | escape }}"
{% endif %}
Loading