aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Writers.hs
diff options
context:
space:
mode:
authorTG <tarik.graba@telecom-paristech.fr>2019-02-05 19:12:48 +0100
committerJohn MacFarlane <jgm@berkeley.edu>2019-02-09 08:21:53 -0800
commit568b25d33a277b02cddbe646f3d6ec31f00ec99b (patch)
tree529d6b8ae020dc44660efcbd443fbd52345a3e97 /src/Text/Pandoc/Writers.hs
parent8fdeae2872d76e0d6cd996d595aa22d259074a91 (diff)
downloadpandoc-568b25d33a277b02cddbe646f3d6ec31f00ec99b.tar.gz
Adds Asciidoctor sprcific writer and tests
Diffstat (limited to 'src/Text/Pandoc/Writers.hs')
-rw-r--r--src/Text/Pandoc/Writers.hs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Text/Pandoc/Writers.hs b/src/Text/Pandoc/Writers.hs
index 629dbf717..26318e191 100644
--- a/src/Text/Pandoc/Writers.hs
+++ b/src/Text/Pandoc/Writers.hs
@@ -37,6 +37,7 @@ module Text.Pandoc.Writers
Writer(..)
, writers
, writeAsciiDoc
+ , writeAsciiDoctor
, writeBeamer
, writeCommonMark
, writeConTeXt
@@ -178,6 +179,7 @@ writers = [
,("rtf" , TextWriter writeRTF)
,("org" , TextWriter writeOrg)
,("asciidoc" , TextWriter writeAsciiDoc)
+ ,("asciidoctor" , TextWriter writeAsciiDoctor)
,("haddock" , TextWriter writeHaddock)
,("commonmark" , TextWriter writeCommonMark)
,("gfm" , TextWriter writeCommonMark)