diff options
author | John MacFarlane <jgm@berkeley.edu> | 2021-03-01 09:02:10 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2021-03-01 09:46:43 -0800 |
commit | 7f1b933aaacf4a01fb23fa4989f190098e96e702 (patch) | |
tree | 20edb3349cf16ecdab9a3c1651553284d350499c | |
parent | 382f0e23d22b15aaa9fe2aeb6117ef0a102e379d (diff) | |
download | pandoc-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.cabal | 2 | ||||
-rw-r--r-- | src/Text/Pandoc/Readers/LaTeX.hs | 2 |
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, (<|>)) |