20 lines
553 B
JSON
20 lines
553 B
JSON
---
|
|
layout: null
|
|
---
|
|
{% comment %}
|
|
MaterialDocs https://github.com/chromatical/jekyll-materialdocs
|
|
Copyright (c) 2017 James King
|
|
MIT License https://opensource.org/licenses/MIT
|
|
{% endcomment %}
|
|
{% if site.search != false %}
|
|
[
|
|
{% for node in site.pages %}{% if node.title and node.content and node.search != false %}
|
|
{
|
|
"title" : "{{ node.title | escape }}",
|
|
"url" : "{{ node.url | absolute_url }}",
|
|
"content" : {{ node.content | newlines_to_br | strip_html | jsonify }}
|
|
},
|
|
{% endif %}{% endfor %}{}
|
|
]
|
|
{% endif %}
|