18 lines
544 B
JSON
18 lines
544 B
JSON
---
|
|
layout: compress
|
|
---
|
|
|
|
[
|
|
{% for post in site.posts %}
|
|
{
|
|
"title": "{{ post.title | escape }}",
|
|
"url": "{{ site.baseurl }}{{ post.url }}",
|
|
"categories": "{{ post.categories | join: ', '}}",
|
|
"tags": "{{ post.tags | join: ', ' }}",
|
|
"date": "{{ post.date }}",
|
|
{% assign _content = post.content %}
|
|
{% include no-linenos.html %}
|
|
"snippet": "{{ _content | strip_html | strip_newlines | remove_chars | escape | truncate: 300 | replace: '\', '\\\\' }}"
|
|
}{% unless forloop.last %},{% endunless %}
|
|
{% endfor %}
|
|
]
|