summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2017-12-15 10:13:16 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2017-12-15 10:13:16 -0800
commit3a3d661408db64ff26040f17bfb3b5153020024b (patch)
tree0e8d30942d62f3db5e874d419a3a1f21021c2aac /src
parent044d58bb24cf41493222a14612e2de4f8d05ea6a (diff)
LaTeX reader: export tokenize, untokenize.
Mainly so they can be tested.
Diffstat (limited to 'src')
-rw-r--r--src/Text/Pandoc/Readers/LaTeX.hs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Readers/LaTeX.hs b/src/Text/Pandoc/Readers/LaTeX.hs
index fab97347b..c82697704 100644
--- a/src/Text/Pandoc/Readers/LaTeX.hs
+++ b/src/Text/Pandoc/Readers/LaTeX.hs
@@ -37,7 +37,9 @@ module Text.Pandoc.Readers.LaTeX ( readLaTeX,
applyMacros,
rawLaTeXInline,
rawLaTeXBlock,
- inlineCommand
+ inlineCommand,
+ tokenize,
+ untokenize
) where
import Control.Applicative (many, optional, (<|>))