aboutsummaryrefslogtreecommitdiff
path: root/pandoc.cabal
diff options
context:
space:
mode:
authorAlbert Krewinkel <albert@zeitkraut.de>2016-05-22 16:33:31 +0200
committerAlbert Krewinkel <albert@zeitkraut.de>2016-05-25 22:53:55 +0200
commita340c7249f8e19d36ee4a68663b4c97e0893292b (patch)
tree56c1d4e5255d0e1a6e3c33415d7d3ca7d216f2a9 /pandoc.cabal
parentcc937eea2fbd8a7bb07672bfed3b924de8573646 (diff)
downloadpandoc-a340c7249f8e19d36ee4a68663b4c97e0893292b.tar.gz
Org reader: extract parsing function to module
The Org-mode reader uses many functions defined in the `Text.Pandoc.Parsing` utility module. Some of the functions are overwritten with versions adapted to Org-mode idiosyncrasies. These special functions, as well as the normal Pandoc versions, are combined in a single module to increase the ease of use. This leads to decoupling of Org-mode and Pandoc and hence to slightly cleaner code. The downside is code-bloat due to repeated import/export statements.
Diffstat (limited to 'pandoc.cabal')
-rw-r--r--pandoc.cabal1
1 files changed, 1 insertions, 0 deletions
diff --git a/pandoc.cabal b/pandoc.cabal
index 24da05faa..61b5043ba 100644
--- a/pandoc.cabal
+++ b/pandoc.cabal
@@ -394,6 +394,7 @@ Library
Text.Pandoc.Readers.Odt.Arrows.State,
Text.Pandoc.Readers.Odt.Arrows.Utils,
Text.Pandoc.Readers.Org.ParserState,
+ Text.Pandoc.Readers.Org.Parsing,
Text.Pandoc.Writers.Shared,
Text.Pandoc.Asciify,
Text.Pandoc.MIME,