1
0
mirror of https://github.com/onkelbeh/cheatsheets.git synced 2025-06-15 22:57:33 +02:00
cheatsheets/data/search-index.json
2017-10-23 12:43:26 +08:00

22 lines
750 B
JSON

---
layout: blank
type: other
---
{% assign pages = site.pages
| where_exp: "page", 'page.type == "article"'
%}[
{% for page in pages
%}{% if forloop.index0 != 0 %},{% endif %}{
"id": {{ page.url | replace: ".html", "" | slice: 1, 9999 | jsonify }},
"title": {{ page.title | jsonify }},
"url": {{ page.url | replace: ".html", "" | jsonify }},
"category": {{ page.category | jsonify }},
"keywords": {{ page.keywords | jsonify }},
"content_html": {{ page.content | markdownify | strip | jsonify }},
"intro_html": {{ page.intro | markdownify | strip | jsonify }},
"description_html": {{ page.description | markdownify | strip | jsonify }},
"tags": {{ page.tags | jsonify }},
"updated": {{ page.updated | jsonify }}
}{% endfor %}
]