Is there a command line utility for rendering GitHub flavored Markdown?

后端 未结 25 1567
一个人的身影
一个人的身影 2020-11-28 16:53

I\'m wondering if there is a command line utility for taking a GitHub flavored Markdown file and rendering it to HTML.

I\'m using a GitHub wiki to create website con

相关标签:
25条回答
  • 2020-11-28 17:58

    pandoc with browser works well for me.

    Usage: cat README.md | pandoc -f markdown_github | browser

    Installation (Assuming you are using Mac OSX):

    • $ brew install pandoc

    • $ brew install browser

    Or on Debian/Ubuntu: apt-get install pandoc browser

    0 讨论(0)
提交回复
热议问题