Export Markdown to dokuwiki format
lan2net opened this issue · 1 comments
lan2net commented
Hello,
I really like this module for markdown exports.
The current markdown exports well but in the following format:
H1
(# H1)
H2 (## H2)
H3 (### H3)
H4 (#### H4)
...
My question is:
How to modify the php file (exportMarkdown.js)
to have the export markdown in Dokuwiki format for example:
= H1 =
== H2 ==
=== H3 ===
==== H4 ====
...
Thank you for your reply
zzkt commented
You can use an external tool like pandoc to convert between markup styles (try it online here). If you don't want to use pandoc then the ep_mediawiki plugin might be a better starting point.