Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to convert existing redmine wiki from textile to markdown?

I want to use markdown as my redmine wiki engine.

I installed the markdown plugin and it worked well.

The only question is, how can I convert those old wiki (textile) into markdown so they can be displayed correctly?

like image 577
hSATAC Avatar asked Mar 20 '12 06:03

hSATAC


1 Answers

Since this is a once-only task why not pandoc -f textile -t markdown oldfile.text -o newfile.md? Try it at Try Pandoc.

like image 86
applicative Avatar answered Oct 26 '22 01:10

applicative