mirror of
https://github.com/thangisme/notes.git
synced 2024-11-04 15:47:21 -05:00
13 lines
777 B
JSON
13 lines
777 B
JSON
|
---
|
||
|
permalink: /assets/js/search-data.json
|
||
|
---
|
||
|
{
|
||
|
{% assign comma = false %}
|
||
|
{% for page in site.html_pages %}{% if page.search_exclude != true %}{% if comma == true%},{% endif %}"{{ forloop.index0 }}": {
|
||
|
"title": "{{ page.title | escape_once }}",
|
||
|
"content": "{{ page.content | 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' | replace: '\', ' ' | replace: ' . . . ', ' . ' | replace: ' . . ', ' . ' | normalize_whitespace }}",
|
||
|
"url": "{{ page.url | absolute_url }}",
|
||
|
"relUrl": "{{ page.url }}"
|
||
|
}{% assign comma = true %}
|
||
|
{% endif %}{% endfor %}
|
||
|
}
|