List all posts, tags and categories in Jekyll.
Octopress users: if you found "
is escaped in the generated JSON file, please change them to \"
. Refer to this issue.
List all posts, tags and categories in Jekyll.
Octopress users: if you found "
is escaped in the generated JSON file, please change them to \"
. Refer to this issue.
--- | |
layout: null | |
--- | |
{ | |
"categories": [ | |
{% for category in site.categories %} | |
"{{ category | first }}"{% unless forloop.last %},{% endunless %} | |
{% endfor %} | |
] | |
} |
--- | |
layout: null | |
--- | |
{ | |
"posts": [ | |
{% for post in site.posts %} | |
{ | |
"title": "{{ post.title | xml_escape }}", | |
"url": "{{ site.url }}{{ post.url }}", | |
"date": "{{ post.date | date_to_xmlschema }}" | |
}{% unless forloop.last %},{% endunless %} | |
{% endfor %} | |
] | |
} |
Thank you, very helpful!
Really Useful!!
That's very helpful!