Pandocとは?
The universal markup converter
https://pandoc.org/
https://github.com/jgm/pandoc
The universal markup converter
Pandoc is a Haskell library for converting from one markup format to another, and a command-line tool that uses this library. It can convert from
インストール
以下を参考にしてインストールする
Macの場合
brew install pandoc
## 変換する
```md:README.md
# Test!
This is a test of *pandoc*.
- list one
- list two
コマンド実行してHTMLに変換する
pandoc README.md -f markdown -t html -s -o test1.html
変換したtest1.html
コマンド実行してWordに変換する
pandoc README.md -f markdown -t docx -s -o test1.docx
変換したtest1.docx
すごい!これはmarkdownでドキュメント作成したくなる。
参考
https://pandoc.org/
https://github.com/jgm/pandoc
https://github.com/jgm/pandoc/blob/master/INSTALL.md

