Hello together
To learn Kirby I hack together my own template with bootstrap. That actually works quite well. But I have a question where I currently do not know what to do.
When I create a table in the Kirby backend with Markdown it is successfully generated in the frontend. As an example, from the following…
| test | test |
| -- | -- |
| content | content |
…the following is generated in frontent:
<table>
<thead>
<tr>
<th>test</th>
<th>test</th>
</tr>
</thead>
<tbody>
<tr>
<td>content</td>
<td>content</td>
</tr>
</tbody>
</table>
That’s okay so far. But for the design of Bootstrap to work I have to change <table>
to <table class="table">
. So my question is:
How can I add a class to every table tag generated by Kirby?
Thanks
Markus