hexo-renderer-org
hexo-renderer-org copied to clipboard
table render not work
after render it shows:
这看起来应该只是 css 的问题,因为 hexo 的大多主题是为了 markdown renderer 设计的,可以把具体生成的 HTML 发出来看看么
我也遇到同样的问题,我生成的html是这个样子的
<table border="2" cellspacing="0" cellpadding="6" rules="groups" frame="hsides">
<colgroup>
<col class="left">
<col class="right">
<col class="right">
<col class="right">
</colgroup>
<thead>
<tr>
<th scope="col" class="left">name</th>
<th scope="col" class="right">num1</th>
<th scope="col" class="right">num2</th>
<th scope="col" class="right">num3</th>
</tr>
</thead>
<tbody>
<tr>
<td class="left">sem</td>
<td class="right">1</td>
<td class="right">2</td>
<td class="right">2</td>
</tr>
<tr>
<td class="left">jor</td>
<td class="right">2</td>
<td class="right">3</td>
<td class="right">3</td>
</tr>
</tbody>
</table>