aboutsummaryrefslogtreecommitdiff
path: root/pandoc-lua-engine/src/Text/Pandoc/Lua.hs
diff options
context:
space:
mode:
authorAlbert Krewinkel <[email protected]>2024-06-08 22:48:35 +0200
committerAlbert Krewinkel <[email protected]>2024-06-09 16:10:38 +0200
commit2cc9defda43bb4827cc6ab3ee08ca4e44685b7bc (patch)
treeb216dee6dace7a606f3befd3518beb05c7990273 /pandoc-lua-engine/src/Text/Pandoc/Lua.hs
parent684668db1ed022a7f26c8e2e8e949a4d08e48549 (diff)
Lua: split Init module into more modules.
The module has grown unwieldy and is therefore split into three internal Haskell modules, `Init`, `Module`, and `Run`.
Diffstat (limited to 'pandoc-lua-engine/src/Text/Pandoc/Lua.hs')
-rw-r--r--pandoc-lua-engine/src/Text/Pandoc/Lua.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/pandoc-lua-engine/src/Text/Pandoc/Lua.hs b/pandoc-lua-engine/src/Text/Pandoc/Lua.hs
index 0039e1025..6dd7312e0 100644
--- a/pandoc-lua-engine/src/Text/Pandoc/Lua.hs
+++ b/pandoc-lua-engine/src/Text/Pandoc/Lua.hs
@@ -21,8 +21,8 @@ module Text.Pandoc.Lua
, getEngine
) where
+import Text.Pandoc.Lua.Custom (loadCustom)
import Text.Pandoc.Lua.Engine (getEngine, applyFilter)
import Text.Pandoc.Lua.Global (Global (..), setGlobals)
-import Text.Pandoc.Lua.Init (runLua, runLuaNoEnv)
-import Text.Pandoc.Lua.Custom (loadCustom)
+import Text.Pandoc.Lua.Run (runLua, runLuaNoEnv)
import Text.Pandoc.Lua.Orphans ()