mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
16 lines
575 B
JSON
16 lines
575 B
JSON
---
|
|
layout: null
|
|
---
|
|
[
|
|
{% assign sortedPages = site.pages | sort: "title" %}
|
|
{% for curPage in sortedPages %}{% if curPage.parent == "wiki" %}
|
|
{
|
|
"title" : "{{curPage.title | escape}}",
|
|
"group" : "{{curPage.group | escape}}",
|
|
"description" : "{{curPage.description | escape}}",
|
|
"url" : "{{site.baseurl}}{{curPage.url}}",
|
|
"content" : "{{ curPage.content | strip_html | strip_newlines | replace:'\',' ' | escape | downcase }}"
|
|
}{% unless forloop.last %},{% endunless %}
|
|
{% endif %}{% endfor %}
|
|
]
|