aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Readers.hs
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2020-05-05 23:01:50 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2020-07-19 22:51:59 -0700
commit0aed9dd589189a9bbe5cae99e0e024e2d4a92c36 (patch)
tree5b281841a2088020a8086dd9fe7041436d683c6d /src/Text/Pandoc/Readers.hs
parent3a22fbd11bba805140b1963a583a11b4fa1169a2 (diff)
downloadpandoc-0aed9dd589189a9bbe5cae99e0e024e2d4a92c36.tar.gz
Add commonmark_x output format...
commonmark with a number of useful extensions (more than gfm).
Diffstat (limited to 'src/Text/Pandoc/Readers.hs')
-rw-r--r--src/Text/Pandoc/Readers.hs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Text/Pandoc/Readers.hs b/src/Text/Pandoc/Readers.hs
index 5d33d494c..1337c742c 100644
--- a/src/Text/Pandoc/Readers.hs
+++ b/src/Text/Pandoc/Readers.hs
@@ -111,6 +111,7 @@ readers = [ ("native" , TextReader readNative)
,("markdown_github" , TextReader readMarkdown)
,("markdown_mmd", TextReader readMarkdown)
,("commonmark" , TextReader readCommonMark)
+ ,("commonmark_x" , TextReader readCommonMark)
,("creole" , TextReader readCreole)
,("dokuwiki" , TextReader readDokuWiki)
,("gfm" , TextReader readCommonMark)