# Table

Takes an array generated by the [Table Fieldtype](/fieldtypes/table.md), and converts into a basic HTML `<table>`.

```yaml
my_table:
  -
    cells:
      - One
      - Two
  -
    cells:
      - Three
      - Four
```

::tabs

::tab antlers
```antlers
{{ my_table | table }}
```
::tab blade
```blade
{!! Statamic::modify($my_table)->table() !!}
```
::

```html
<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) }}
```
