aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2021-03-01 09:02:10 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2021-03-01 09:46:43 -0800
commit7f1b933aaacf4a01fb23fa4989f190098e96e702 (patch)
tree20edb3349cf16ecdab9a3c1651553284d350499c
parent382f0e23d22b15aaa9fe2aeb6117ef0a102e379d (diff)
downloadpandoc-7f1b933aaacf4a01fb23fa4989f190098e96e702.tar.gz
Make T.P.Readers.LaTeX.Types an unexported module.
[API change] This is really an implementation detail that shouldn't be exposed in the public API.
-rw-r--r--pandoc.cabal2
-rw-r--r--src/Text/Pandoc/Readers/LaTeX.hs2
2 files changed, 2 insertions, 2 deletions
diff --git a/pandoc.cabal b/pandoc.cabal
index c3317f24b..ad325ee24 100644
--- a/pandoc.cabal
+++ b/pandoc.cabal
@@ -518,7 +518,6 @@ library
Text.Pandoc.Readers,
Text.Pandoc.Readers.HTML,
Text.Pandoc.Readers.LaTeX,
- Text.Pandoc.Readers.LaTeX.Types,
Text.Pandoc.Readers.Markdown,
Text.Pandoc.Readers.CommonMark,
Text.Pandoc.Readers.Creole,
@@ -627,6 +626,7 @@ library
Text.Pandoc.Readers.HTML.Table,
Text.Pandoc.Readers.HTML.TagCategories,
Text.Pandoc.Readers.HTML.Types,
+ Text.Pandoc.Readers.LaTeX.Types,
Text.Pandoc.Readers.LaTeX.Parsing,
Text.Pandoc.Readers.LaTeX.Lang,
Text.Pandoc.Readers.LaTeX.SIunitx,
diff --git a/src/Text/Pandoc/Readers/LaTeX.hs b/src/Text/Pandoc/Readers/LaTeX.hs
index fa77595b9..fc85f0545 100644
--- a/src/Text/Pandoc/Readers/LaTeX.hs
+++ b/src/Text/Pandoc/Readers/LaTeX.hs
@@ -19,7 +19,7 @@ module Text.Pandoc.Readers.LaTeX ( readLaTeX,
applyMacros,
rawLaTeXInline,
rawLaTeXBlock,
- inlineCommand,
+ inlineCommand
) where
import Control.Applicative (many, optional, (<|>))