docs.sheetjs.com/docz/static/eleventy/index.njk
2023-05-07 09:58:36 -04:00

10 lines
198 B
Plaintext

<table><thead><th>Name</th><th>Index</th></thead>
<tbody>
{% for row in pres %}
<tr>
<td>{{ row.Name }}</td>
<td>{{ row.Index }}</td>
</tr>
{% endfor %}
</tbody>
</table>