Horizon (and Meta) CSS3 renders tables without theads with a header divider

<table>
<tbody>
<tr>
<th>E-Mail Address</th>
<td><a href="mailto:example@example"><code>example@example</code></a></td>
</tr>
</tbody>
</table>

…renders as:

A Screenshot

E-Mail Address example@example

[1]


  1. forum.gnupg.org/t/7183/4 ↩︎

I believe this is normal? I’m seeing it on the Meta theme, you might want to build a Markdown table instead for proper header support.

@darkpixlz, the problem is that it’s treating it as if it contains a tHead, when it doesn’t. The ths are inside the tBody. CommonMark doesn’t support this:

1 Like