aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc
diff options
context:
space:
mode:
authorClare Macrae <clare.macrae@googlemail.com>2013-07-26 22:38:13 +0100
committerClare Macrae <clare.macrae@googlemail.com>2013-07-26 22:38:13 +0100
commit2900a9a3718b0a2097d63cff76e7b9060c845837 (patch)
tree0ac60c63ff1167b5d21d6152c30c3b98554e9022 /src/Text/Pandoc
parent5b04d063a1637a24a3bb495718046c1f29525fea (diff)
downloadpandoc-2900a9a3718b0a2097d63cff76e7b9060c845837.tar.gz
Added some todos to dokuwiki writer (#386)
Diffstat (limited to 'src/Text/Pandoc')
-rw-r--r--src/Text/Pandoc/Writers/DokuWiki.hs15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/Text/Pandoc/Writers/DokuWiki.hs b/src/Text/Pandoc/Writers/DokuWiki.hs
index 4b72d0f14..d12ff2519 100644
--- a/src/Text/Pandoc/Writers/DokuWiki.hs
+++ b/src/Text/Pandoc/Writers/DokuWiki.hs
@@ -29,6 +29,21 @@ Conversion of 'Pandoc' documents to DokuWiki markup.
DokuWiki: <https://www.dokuwiki.org/dokuwiki>
-}
+
+{-
+ [ ] Don't convert & to &amp;
+ [ ] Don't generate <blockquote>...
+ [ ] Don't generate <pre>...
+ [ ] Implement definition lists
+ [ ] Don't generate lists using <ol> and <ul>
+ [ ] Don't generate <div>
+ [ ] Implement conversion of tables
+ [ ] Implement comments
+ [ ] Implement footnotes
+ [ ] Work through the Dokuwiki spec, and check I've not missed anything out
+ [ ] Test the output in Dokuwiki - and compare against the display of another format, e.g. HTML
+-}
+
module Text.Pandoc.Writers.DokuWiki ( writeDokuWiki ) where
import Text.Pandoc.Definition
import Text.Pandoc.Options