1
0
mirror of https://github.com/danog/gojekyll.git synced 2024-12-02 18:47:56 +01:00
gojekyll/testdata/example/data.md

19 lines
244 B
Markdown
Raw Normal View History

2017-07-14 21:24:26 +02:00
---
---
## YAML data
* {{ site.data.file_data.key }}
## JSON data
{{ site.data.json_data.key }}
## CSV data
<table>
{% for row in site.data.csv_data %}
<tr>{% for cell in row %}<td>{{ cell }}</td>{% endfor %}</tr>
{% endfor %}
</table>