Convert Textile Markup to Markdown?

max picture max · May 15, 2010 · Viewed 9.7k times · Source

I'm merging legacy Systems and some components use Markdown and others use Textile formatting. This is extremely confusing to my users. Therefore I want to standardize on Markdown.

Is there a way to convert at least the Bulk of Textile formatting to markdown automatically?

Answer

Simon Michael picture Simon Michael · Jan 28, 2011

The forthcoming pandoc 1.8 (or the current github version) can convert Textile to Markdown directly. I don't know how much of Textile it handles, but

pandoc index.textile -o index.markdown

worked nicely here.