Last active
August 29, 2015 14:21
-
-
Save mneumegen/1694b664cc0fd40b5b20 to your computer and use it in GitHub Desktop.
Out JSON in Jekyll
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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