Radical Design Course by Jack McDade

From the creator of Statamic

Learn how to make your websites standout and be remembered.

For a software dev like me who has no idea how to create a cute hand-drawn dashed line, this course just 100% works.

— Ira Zayats, Developer

table Modifier

Takes an array generated by the Table Fieldtype, and converts into a basic HTML <table>.

my_table:
-
cells:
- One
- Two
-
cells:
- Three
- Four
{{ my_table | table }}
<table>
<tr>
<td>One</td>
<td>Two</td>
</tr>
<tr>
<td>Three</td>
<td>Four</td>
</tr>
</table>

You can pass true as an argument to parse the cell data as markdown.

{{ my_table | table(true) }}
Docs feedback

Submit improvements, related content, or suggestions through Github.

Betterify this page →