markdown tables on GitHub via Pandoc

你离开我真会死。 提交于 2019-12-06 09:12:53
  1. You're correct that the GitHub documentation doesn't say what kind of tables GFM supports. I think your test shows that it supports pipe tables. Since Pandoc can natively output GFM (see below), that's likely your best bet.

  2. You can specify the precise output format using the -t option. In this case:

    pandoc -o whole-thing.md -t markdown_github *.md
    

    The supported output formats are listed in the Pandoc README.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!