aboutsummaryrefslogtreecommitdiff
path: root/src/Text
diff options
context:
space:
mode:
authorJohn MacFarlane <[email protected]>2025-07-13 12:33:12 -0700
committerJohn MacFarlane <[email protected]>2025-07-13 12:33:32 -0700
commit2cf9b55421d7026dac8c45730b8538f13e4bbb78 (patch)
treec943119f7c90f5168ba71fb88eb7070d214ee51b /src/Text
parent2e3cb483e9d2367b0fbd308e33c33cbb9995fc64 (diff)
Export `copyrightMessage` from Text.Pandoc.App module.
Export `copyrightMessage` from the unexported module Text.Pandoc.App.CommandLineOptions and reexport from Text.Pandoc.App [API change]. This avoids the need for a duplicated version in pandoc-cli, which can now depend on the library's exported version.
Diffstat (limited to 'src/Text')
-rw-r--r--src/Text/Pandoc/App.hs3
-rw-r--r--src/Text/Pandoc/App/CommandLineOptions.hs1
2 files changed, 3 insertions, 1 deletions
diff --git a/src/Text/Pandoc/App.hs b/src/Text/Pandoc/App.hs
index 8585fc555..7b1b7ec10 100644
--- a/src/Text/Pandoc/App.hs
+++ b/src/Text/Pandoc/App.hs
@@ -26,6 +26,7 @@ module Text.Pandoc.App (
, parseOptionsFromArgs
, options
, applyFilters
+ , copyrightMessage
) where
import qualified Control.Exception as E
import Control.Monad ( (>=>), when, forM, forM_ )
@@ -55,7 +56,7 @@ import Text.Pandoc.Image (svgToPng)
import Text.Pandoc.App.Opt (Opt (..), LineEnding (..), defaultOpts,
IpynbOutput (..), OptInfo(..))
import Text.Pandoc.App.CommandLineOptions (parseOptions, parseOptionsFromArgs,
- options, handleOptInfo)
+ options, handleOptInfo, copyrightMessage)
import Text.Pandoc.App.Input (InputParameters (..), readInput)
import Text.Pandoc.App.OutputSettings (OutputSettings (..), optToOutputSettings,
sandbox')
diff --git a/src/Text/Pandoc/App/CommandLineOptions.hs b/src/Text/Pandoc/App/CommandLineOptions.hs
index db7d5a1ac..383ab04a7 100644
--- a/src/Text/Pandoc/App/CommandLineOptions.hs
+++ b/src/Text/Pandoc/App/CommandLineOptions.hs
@@ -21,6 +21,7 @@ module Text.Pandoc.App.CommandLineOptions (
, options
, engines
, setVariable
+ , copyrightMessage
) where
import Control.Monad.Trans
import Control.Monad.State.Strict