We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06ab723 commit 6094c84Copy full SHA for 6094c84
src/Text/Pandoc/Lua/Filter.hs
@@ -103,7 +103,7 @@ walkMWithLuaFilter :: LuaFilter -> Pandoc -> Lua Pandoc
103
walkMWithLuaFilter f =
104
walkInlines f >=> walkBlocks f >=> walkMeta f >=> walkPandoc f
105
106
-mconcatMapM :: Monad m => (a -> m [a]) -> [a] -> m [a]
+mconcatMapM :: (Monad m, Functor m) => (a -> m [a]) -> [a] -> m [a]
107
mconcatMapM f = fmap mconcat . mapM f
108
109
hasOneOf :: LuaFilter -> [String] -> Bool
0 commit comments