mirror of
https://github.com/snachodog/just-the-docs.git
synced 2025-04-20 18:12:23 -06:00
13 lines
746 B
JSON
13 lines
746 B
JSON
---
|
|
---
|
|
{
|
|
{% for page in site.html_pages %}{% if page.search_exclude != true %}"{{ forloop.index0 }}": {
|
|
"id": "{{ forloop.index0 }}",
|
|
"title": "{{ page.title | xml_escape }}",
|
|
"content": "{{ page.content | newline_to_br | replace: '<br />', ' ' | replace: '</h1>', ' ' | strip_newlines | markdownify | strip_html | remove: 'Table of contents' | xml_excape | escape | replace: '\', ' ' | replace: '```', '' | replace: ' ', ' ' | replace: ' ', ' ' | remove: '---' | remove: '#####' | remove: '####' | remove: '###' | remove: '##' | strip_newlines }}",
|
|
"url": "{{ page.url | absolute_url | xml_escape }}",
|
|
"relUrl": "{{ page.url | xml_escape }}"
|
|
}{% if forloop.last %}{% else %},{% endif %}
|
|
{% endif %}{% endfor %}
|
|
}
|