Sha256: 84e1172502e33e0a7327982c924eb9de34e8cbf76d9ec9b3c89f0dac7c290782
Contents?: true
Size: 1.64 KB
Versions: 2
Compression:
Stored size: 1.64 KB
Contents
--- --- [ {%- assign looped = false %} {%- for document in site.documents %} {%- if document.title %} {%- unless document.exclude_from_search %} {%- if looped %},{% endif %} { "id": "{{ document.url | slugify }}", "title": {{ document.title | jsonify }}, {%- if document.collection %} "collection": { "label": {{ document.collection.label | jsonify }}, "name": {{ document.collection.name | default: "Posts" | jsonify }} }, {%- endif %} "categories": {{ document.categories | join: ", " | jsonify }}, "tags": {{ document.tags | join: ", " | jsonify }}, "url": {{ document.url | jsonify }}, "content": {{ document.content | strip_html | replace_regex: "[\s/\n]+"," " | strip | jsonify }} } {%- assign looped = true %} {%- endunless %} {%- endif %} {%- endfor %} {%- for document in site.pages %} {%- if document.name contains ".md" or document.name contains ".html" %} {%- if document.title %} {%- unless document.exclude_from_search %} {%- if looped %},{% endif %} { "id": "{{ document.url | slugify }}", "title": {{ document.title | jsonify }}, "categories": {{ document.categories | join: ", " | jsonify }}, "tags": {{ document.tags | join: ", " | jsonify }}, "url": {{ document.url | jsonify }}, "content": {{ document.content | strip_html | replace_regex: "[\s/\n]+"," " | strip | jsonify }} } {%- endunless %} {%- endif %} {%- endif %} {%- endfor %} ]
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
bridgetown-quick-search-1.0.4 | content/bridgetown_quick_search/index.json |
bridgetown-quick-search-1.0.3 | content/bridgetown_quick_search/index.json |