less-style markdown viewer for UNIX systems

后端 未结 9 1306
刺人心
刺人心 2020-12-22 21:39

I have a Markdown string in JavaScript, and I\'d like to display it (with bolding, etc) in a less (or, I suppose, more)-style viewer for the comman

9条回答
  •  时光说笑
    2020-12-22 22:25

    Using OSX I prefer to use this command

    brew install pandoc
    pandoc -s -f markdown -t man README.md | groff -T utf8 -man | less
    

    Convert markupm, format document with groff, and pipe into less

    credit: http://blog.metamatt.com/blog/2013/01/09/previewing-markdown-files-from-the-terminal/

提交回复
热议问题