1
0
mirror of https://github.com/thangisme/notes.git synced 2024-09-19 17:55:55 -04:00
notes/assets/js/search-data.json

12 lines
750 B
JSON
Raw Normal View History

2018-10-23 13:09:23 -04:00
---
---
{
2018-12-16 15:23:33 -05:00
{% for page in site.html_pages %}{% if page.search_exclude != true %}"{{ forloop.index0 }}": {
"title": "{{ page.title | replace: '&', '&' }}",
2019-05-19 11:21:20 -04:00
"content": "{{ page.content | markdownify | replace: '</h', ' . </h' | replace: '<hr', ' . <hr' | replace: '</p', ' . </p' | replace: '</ul', ' . </ul' | replace: '</tr', ' . </tr' | replace: '</li', ' | </li' | replace: '</td', ' | </td' | strip_html | escape_once | remove: 'Table of contents' | remove: '```' | remove: '---' | replace: '\', ' ' | replace: ' . . . ', ' . ' | replace: ' . . ', ' . ' | normalize_whitespace }}",
"url": "{{ page.url | absolute_url }}",
"relUrl": "{{ page.url }}"
}{% unless forloop.last %},{% endunless %}
2018-10-23 13:09:23 -04:00
{% endif %}{% endfor %}
}