hexo-renderer-org icon indicating copy to clipboard operation
hexo-renderer-org copied to clipboard

table render not work

Open linchen2chris opened this issue 9 years ago • 2 comments

screen shot 2016-11-05 at 5 31 50 pm

after render it shows:

screen shot 2016-11-05 at 5 33 09 pm

linchen2chris avatar Nov 05 '16 09:11 linchen2chris

这看起来应该只是 css 的问题,因为 hexo 的大多主题是为了 markdown renderer 设计的,可以把具体生成的 HTML 发出来看看么

xcodebuild avatar Jan 17 '17 12:01 xcodebuild

我也遇到同样的问题,我生成的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>

semgilo avatar Apr 29 '17 00:04 semgilo