Horizon (и Meta) в CSS3 отображает таблицы без thead с разделителем заголовка

<table>
<tbody>
<tr>
<th>Адрес электронной почты</th>
<td><a href="mailto:example@example"><code>example@example</code></a></td>
</tr>
</tbody>
</table>

…отображается как:

A Screenshot

Адрес электронной почты 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.

1 лайк

@darkpixlz, проблема в том, что он обрабатывает это так, будто там есть tHead, хотя его нет. th находятся внутри tBody. CommonMark не поддерживает это:

1 лайк