'How to convert RTF to Markdown on the UNIX/OSX command line similar to pandoc

How do I convert RTF (say from stdin) to Markdown with a command line tool under UNIX/OSX.

I am looking for something like pandoc. However pandoc itself does not allow RTF as an input format. :-( So, I'd be happy either with a similar tool to pandoc or a pointer to an external RTF reader for pandoc.



Solution 1:[1]

On Mac OSX I can use the pre-installed textutil command for the RTF-to-HTML conversion, then convert via pandoc to markdown. So a command line which takes RTF from stdin and writes markdown to stdout looks like this:

textutil -stdin -convert html  -stdout | pandoc --from=html --to=markdown

Solution 2:[2]

Using Ted and pandoc together, you should be able to do this:

Ted --saveTo text.rtf text.html
pandoc --from=html --to=markdown --out=text.md < text.html

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 halloleo
Solution 2 miken32