Jekyll 3.2.1 + kramdown. I have a theme that uses bootstrap css.
Generated <table>
s should be decorated with class="table"
as bootstrap css requires.
I have seen other suggestions to add {: class=table}
or {.table}
to the markdown table but I really dislike this solution as it 'pollutes' the pure markdown with html\css details. I want my markdown to be readable as is and agnostic to the target format.
Preferred solution would be to customize Jekyll or kramdown such that markdown tables will be generated with this class automatically. Is this possible?