如何使用 pandoc 语法在 Markdown 文档中指定表格?
我有一个 Markdown 文档,正在使用 pandoc 工具处理以生成 HTML 和 PDF 文档。我正在尝试在文档中包含一个表格。常规 Markdown 不支持表格,但 pandoc 支持。我尝试将 pandoc 文档中的表定义复制粘贴到我的源文档中,但是当通过 pandoc 程序运行它时,生成的文档全部塞进一张大表中。
谁能告诉我一个可以正确渲染的 pandoc 表?
I have a markdown document I'm processing with the pandoc tool to generate HTML and PDF documents. I'm trying to include a table in the document. Regular markdown doesn't support tables, but pandoc does. I've tried copy-pasting the definition of a table from the pandoc documentation into my source document, but when running it through the pandoc program the resulting document is all crammed into one big table.
Can anyone show me a pandoc table that renders properly?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
另一种选择是使用 GitHub markdown 表 更容易格式化,因为它们不需要与空格字符对齐,
并且上面的表格格式也会在 Stackoverflow 中呈现...
Pandoc 能够将 GitHub 风格的 markdown、
pandoc --from=gfm -- 转换为:pdf -o 表.pdf 表.md
Another option is to use GitHub markdown tables which are easier to format since they don't require alignment with empty space characters,
and the above table format renders in Stackoverflow too...
Pandoc is able to convert GitHub flavoured markdown,
pandoc --from=gfm --to:pdf -o table.pdf table.md