File: search.json

package info (click to toggle)
hisat2 2.2.1-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 19,448 kB
  • sloc: cpp: 97,109; python: 11,075; perl: 7,279; sh: 2,328; ansic: 1,458; makefile: 532; javascript: 273; java: 116
file content (16 lines) | stat: -rw-r--r-- 495 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
---

[
{% for post in site.posts %}
{
"id": {{ post.id | replace: '/', '-' | jsonify }},
"title": {{ post.title | jsonify }},
"author": {{ post.author | jsonify }},
"tags": [{% for tag in post.tags%}{{ tag | jsonify }}{% unless forloop.last %}, {% endunless %}{% endfor %}],
"url": {{ post.url | jsonify }},
"date": {{ post.date | date: '%Y-%m-%d' | jsonify }},
"content": {{ post.content | strip_html | strip_newlines | jsonify }}
}{% unless forloop.last %}, {% endunless %}
{% endfor %}
]