如何在UNIX / OSX下使用命令行工具将RTF(例如从stdin)转换为Markdown。
我正在寻找像pandoc
这样的东西。但是pandoc
本身不允许RTF作为输入格式。 :-(所以,我很高兴使用pandoc
的类似工具或pandoc
的外部RTF阅读器指针。
在Mac OSX上,我可以使用预安装的textutil命令进行RTF到HTML的转换,然后通过pandoc
转换为markdown。因此从stdin获取RTF并将markdown写入stdout的命令行如下所示:
textutil -stdin -convert html -stdout | pandoc --from=html --to=markdown