mirror of
https://github.com/thangisme/notes.git
synced 2024-11-03 02:07:29 -05:00
13 lines
796 B
JSON
13 lines
796 B
JSON
---
|
|
---
|
|
{
|
|
{% assign comma = false %}
|
|
{% for page in site.html_pages %}{% if page.search_exclude != true %}{% if comma == true%},{% endif %}"{{ forloop.index0 }}": {
|
|
"title": "{{ page.title | replace: '&', '&' }}",
|
|
"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 }}"
|
|
}{% assign comma = true %}
|
|
{% endif %}{% endfor %}
|
|
}
|