diff options
| author | John MacFarlane <jgm@berkeley.edu> | 2024-02-13 23:46:41 -0800 |
|---|---|---|
| committer | John MacFarlane <jgm@berkeley.edu> | 2024-02-13 23:46:41 -0800 |
| commit | 7c3a9b6f2f73cc891e8b40b1564ff76c5508e5cb (patch) | |
| tree | 6147efb938bbca167e2ac93b92304ec93ddfcf9e /src | |
| parent | 8c42926cb2161efac51e259a25d2047d31de3538 (diff) | |
Fix some exports to avoid warnings on older ghc versions.
Diffstat (limited to 'src')
| -rw-r--r-- | src/Text/Pandoc/Writers/Djot.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Writers/Djot.hs b/src/Text/Pandoc/Writers/Djot.hs index 0e605398e..703a54347 100644 --- a/src/Text/Pandoc/Writers/Djot.hs +++ b/src/Text/Pandoc/Writers/Djot.hs @@ -33,7 +33,7 @@ import Text.Pandoc.Shared (isTightList, tshow, stringify, onlySimpleTableCells, import Text.DocLayout import Text.DocTemplates (renderTemplate) -import Control.Monad.State +import Control.Monad.State (StateT(..), gets, modify) import Control.Monad (zipWithM, when) import Data.Maybe (fromMaybe) import qualified Djot.AST as D |
