diff options
| author | Albert Krewinkel <[email protected]> | 2024-06-08 22:48:35 +0200 |
|---|---|---|
| committer | Albert Krewinkel <[email protected]> | 2024-06-09 16:10:38 +0200 |
| commit | 2cc9defda43bb4827cc6ab3ee08ca4e44685b7bc (patch) | |
| tree | b216dee6dace7a606f3befd3518beb05c7990273 /pandoc-lua-engine/src/Text/Pandoc/Lua.hs | |
| parent | 684668db1ed022a7f26c8e2e8e949a4d08e48549 (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.hs | 4 |
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 () |
