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
.
Pandoc can convert between numerous markup and word processing formats, including, but not limited to, various flavors of Markdown, HTML, LaTeX and Word docx.
Pandoc is open-source software used to transform various filetypes such as . md into more user-friendly filetypes including . pdf , . docx , and .
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
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
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With