Sha256: 1c7f574bd93d6c5ce8b0f7ce29ed5ca66a4151b10baccd4721df92278c72972b
Contents?: true
Size: 1.07 KB
Versions: 23
Compression:
Stored size: 1.07 KB
Contents
--- layout: null sitemap: false --- {% capture json %} [ {% assign collections = site.collections | where_exp:'collection','collection.output != false' %} {% for collection in collections %} {% assign docs = collection.docs | where_exp:'doc','doc.sitemap != false' %} {% for doc in docs %} { "title": {{ doc.title | jsonify }}, "excerpt": {{ doc.excerpt | markdownify | strip_html | jsonify }}, "content": {{ doc.content | markdownify | strip_html | jsonify }}, "url": {{ site.baseurl | append: doc.url | jsonify }} }, {% endfor %} {% endfor %} {% assign pages = site.html_pages | where_exp:'doc','doc.sitemap != false' | where_exp:'doc','doc.title != null' %} {% for page in pages %} { "title": {{ page.title | jsonify }}, "excerpt": {{ page.excerpt | markdownify | strip_html | jsonify }}, "content": {{ page.content | markdownify | strip_html | jsonify }}, "url": {{ site.baseurl | append: page.url | jsonify }} }{% unless forloop.last %},{% endunless %} {% endfor %} ] {% endcapture %} {{ json | lstrip }}
Version data entries
23 entries across 23 versions & 1 rubygems