[置顶] 泰晓 RISC-V 实验箱,配套 30+ 讲嵌入式 Linux 系统开发公开课
Use tables in Pandoc's Markdown
Wu Zhangjin 创作于 2014/01/11
by Falcon of TinyLab.org 2014/01/11
Issue
The standard Markdown allows to add tables in HTML format, for exampe:
<table>
<tr>
<th>
Head row1
</th>
<th>
Head row2
</th>
</tr>
<tr>
<td>
Content row1
</td>
<td>
Content row2
</td>
</tr>
</table>
And it looks like:
Head row1 | Head row2 |
---|---|
Content row1 | Content row2 |
But Pandoc doesn’t support it, Pandoc need pure text table, see the Tables section in Pandoc’s User Guide.
Solution
So, to make a table work with pandoc, we must use something like:
Head row1 Head row2 ---------------- ---------------- Content row1 Content row2
猜你喜欢:
- 我要投稿:发表原创技术文章,收获福利、挚友与行业影响力
- 知识星球:独家 Linux 实战经验与技巧,订阅「Linux知识星球」
- 视频频道:泰晓学院,B 站,发布各类 Linux 视频课
- 开源小店:欢迎光临泰晓科技自营店,购物支持泰晓原创
- 技术交流:Linux 用户技术交流微信群,联系微信号:tinylab
支付宝打赏 ¥9.68元 | 微信打赏 ¥9.68元 | |
请作者喝杯咖啡吧 |
Read Album:
- 借力 markdown-lab 沉浸式撰写文档
- 用 Markdown 写文档
- 用 Markdown 制作简历
- 用 Markdown 高效地写幻灯片
- Docker 快速上手:用 Docker + GitBook 写书