diff options
| author | John MacFarlane <jgm@berkeley.edu> | 2012-04-20 10:30:34 -0700 |
|---|---|---|
| committer | John MacFarlane <jgm@berkeley.edu> | 2012-04-20 10:30:34 -0700 |
| commit | b6d530d8764642dc2f0c0373a6569bd0c0270dc1 (patch) | |
| tree | 9f0ee8b4d74bd708bed7cf3614268c35b7f20639 /src/Text/Pandoc.hs | |
| parent | 5a244bb7b330de981cd1a59330b8e34e159a64e8 (diff) | |
| parent | 2f559597d54d9e37885333201434d586ff11bc2e (diff) | |
| download | pandoc-b6d530d8764642dc2f0c0373a6569bd0c0270dc1.tar.gz | |
Merge pull request #491 from mb21/patch-1
Added link, code and info elements to DocBook Reader
Diffstat (limited to 'src/Text/Pandoc.hs')
| -rw-r--r-- | src/Text/Pandoc.hs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Text/Pandoc.hs b/src/Text/Pandoc.hs index 597d2e07f..417362f02 100644 --- a/src/Text/Pandoc.hs +++ b/src/Text/Pandoc.hs @@ -119,6 +119,7 @@ import Text.Pandoc.Definition import Text.Pandoc.Generic import Text.Pandoc.Readers.Markdown import Text.Pandoc.Readers.RST +import Text.Pandoc.Readers.DocBook import Text.Pandoc.Readers.LaTeX import Text.Pandoc.Readers.HTML import Text.Pandoc.Readers.Textile @@ -162,6 +163,7 @@ readers = [("native" , \_ -> readNative) ,("rst" , readRST) ,("rst+lhs" , \st -> readRST st{ stateLiterateHaskell = True}) + ,("docbook" , readDocBook) ,("textile" , readTextile) -- TODO : textile+lhs ,("html" , readHtml) ,("latex" , readLaTeX) |
