1
0
mirror of https://github.com/thangisme/notes.git synced 2024-10-02 23:56:00 -04:00
notes/search-data.json
Patrick Marsceill e581397758
Initial commit
2017-03-26 21:09:19 -04:00

14 lines
364 B
JSON

---
---
{
{% for page in site.html_pages %}
"{{ forloop.index0 }}": {
"id": "{{ forloop.index0 }}",
"title": "{{ page.title | xml_escape }}",
"content": "{{ page.content | strip_html | strip_newlines | escape | remove: "\"}}",
"url": " {{ page.url | xml_escape }}"
}
{% unless forloop.last %},{% endunless %}
{% endfor %}
}