vesper-ridge-wiki/search.json
2023-01-30 17:03:30 -05:00

16 lines
541 B
JSON

---
layout: none
---
[
{% for post in site.notes %}
{
"title" : "{{ post.title | escape }}",
"category" : "{{ post.category }}",
"tags" : "{{ post.tags | join: ', ' }}",
"url" : "{{ site.baseurl }}{{ post.url }}",
"date" : "{{ post.date }}",
"content" : "{{ post.content | strip_html | strip_newlines | smartify }}",
"excerpt" : "{{ post.content | strip_html | strip_newlines | smartify | truncatewords: 20 }}"
} {% unless forloop.last %},{% endunless %}
{% endfor %}
]