mirror of
https://github.com/tcsenpai/obsidiangarden_netlify.git
synced 2025-06-07 05:05:20 +00:00
14 lines
477 B
Plaintext
14 lines
477 B
Plaintext
---
|
|
permalink: netlify/functions/search/data.json
|
|
permalinkBypassOutputDir: true
|
|
eleventyExcludeFromCollections: true
|
|
---
|
|
[{% for post in collections.note %}
|
|
{
|
|
"title": {% if post.data.title %}{{post.data.title | jsonify | safe }}{% else %}{{post.fileSlug | jsonify | safe }}{% endif %},
|
|
"date":"{{ post.date }}",
|
|
"url":"{{ post.url }}",
|
|
"content": {{ post.templateContent | striptags(true) | link | jsonify | safe }}
|
|
}{% if not loop.last %},{% endif %}
|
|
{% endfor %}]
|