diff options
| author | Albert Krewinkel <[email protected]> | 2021-12-31 18:55:46 +0100 |
|---|---|---|
| committer | John MacFarlane <[email protected]> | 2022-01-04 11:55:59 -0800 |
| commit | 5c53837259b341ddd00eea926f0297cfc963d816 (patch) | |
| tree | a7a4ce8dc20ba704b6dd76d20afc1863471c6324 /src | |
| parent | 322364ff6610636a8b57755f5da1878aca0fc8e6 (diff) | |
Stop exporting `writeCustom` from module T.P.Writers [API change]
This ensures that all writer exported in T.P.Writers are parameterized
and work with any `PandocMonad` type. This is consistent with
T.P.Readers, as `readCustom` is not exported from that module either.
Diffstat (limited to 'src')
| -rw-r--r-- | src/Text/Pandoc/App/OutputSettings.hs | 1 | ||||
| -rw-r--r-- | src/Text/Pandoc/Writers.hs | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/src/Text/Pandoc/App/OutputSettings.hs b/src/Text/Pandoc/App/OutputSettings.hs index ff619cef8..5af0baccd 100644 --- a/src/Text/Pandoc/App/OutputSettings.hs +++ b/src/Text/Pandoc/App/OutputSettings.hs @@ -39,6 +39,7 @@ import Text.Pandoc.App.FormatHeuristics (formatFromFilePaths) import Text.Pandoc.App.Opt (Opt (..)) import Text.Pandoc.App.CommandLineOptions (engines, lookupHighlightStyle, setVariable) +import Text.Pandoc.Writers.Custom (writeCustom) import qualified Text.Pandoc.UTF8 as UTF8 readUtf8File :: PandocMonad m => FilePath -> m T.Text diff --git a/src/Text/Pandoc/Writers.hs b/src/Text/Pandoc/Writers.hs index b698c02c0..f4e1f9040 100644 --- a/src/Text/Pandoc/Writers.hs +++ b/src/Text/Pandoc/Writers.hs @@ -25,7 +25,6 @@ module Text.Pandoc.Writers , writeBibLaTeX , writeCommonMark , writeConTeXt - , writeCustom , writeCslJson , writeDZSlides , writeDocbook4 @@ -93,7 +92,6 @@ import Text.Pandoc.Writers.BibTeX import Text.Pandoc.Writers.CommonMark import Text.Pandoc.Writers.ConTeXt import Text.Pandoc.Writers.CslJson -import Text.Pandoc.Writers.Custom import Text.Pandoc.Writers.Docbook import Text.Pandoc.Writers.Docx import Text.Pandoc.Writers.DokuWiki |
