Skip to content

Instantly share code, notes, and snippets.

@mneumegen
Last active August 29, 2015 14:21
Show Gist options
  • Save mneumegen/1694b664cc0fd40b5b20 to your computer and use it in GitHub Desktop.
Save mneumegen/1694b664cc0fd40b5b20 to your computer and use it in GitHub Desktop.
Out JSON in Jekyll
---
layout: null
---
[
{% for doc in site.docs %}
{
"title": "{{ doc.title | xml_escape }}",
"description": "{{doc.description | xml_escape }}",
"type": "{{doc.type | xml_escape}}"
}
{% unless forloop.last %}
,
{% endunless %}
{% endfor %}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment