parent
8134209aa2
commit
6774e0e1fb
1 changed files with 3 additions and 1 deletions
|
@ -12,7 +12,9 @@ swcache: true
|
|||
"tags": {{ post.tags | join: ', ' | jsonify }},
|
||||
"date": "{{ post.date }}",
|
||||
{% include no-linenos.html content=post.content %}
|
||||
"snippet": {{ content | strip_html | strip_newlines | truncate: 200 | jsonify }}
|
||||
{% assign _content = content | strip_html | strip_newlines %}
|
||||
"snippet": {{ _content | truncate: 200 | jsonify }},
|
||||
"content": {{ _content | jsonify }}
|
||||
}{% unless forloop.last %},{% endunless %}
|
||||
{% endfor %}
|
||||
]
|
||||
|
|
Loading…
Reference in a new issue