summaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Lua.hs
diff options
context:
space:
mode:
authorAlbert Krewinkel <albert@zeitkraut.de>2022-09-27 13:09:55 +0200
committerJohn MacFarlane <jgm@berkeley.edu>2022-09-27 08:42:27 -0700
commitefecff1f2f035ee3a0825e969d048d6c5ffacd26 (patch)
treee73fa73d741472d1dc2ac00d77e76d6591c6e9a8 /src/Text/Pandoc/Lua.hs
parent175b791529a960bf7df8bccb8876783076b3d321 (diff)
pandoc-cli: support `-E` flag in pandoc-lua
Diffstat (limited to 'src/Text/Pandoc/Lua.hs')
-rw-r--r--src/Text/Pandoc/Lua.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Lua.hs b/src/Text/Pandoc/Lua.hs
index 28e807ae9..085526cb7 100644
--- a/src/Text/Pandoc/Lua.hs
+++ b/src/Text/Pandoc/Lua.hs
@@ -20,11 +20,12 @@ module Text.Pandoc.Lua
, Global(..)
, setGlobals
, runLua
+ , runLuaNoEnv
) where
import Text.Pandoc.Lua.Filter (applyFilter)
import Text.Pandoc.Lua.Global (Global (..), setGlobals)
-import Text.Pandoc.Lua.Init (runLua)
+import Text.Pandoc.Lua.Init (runLua, runLuaNoEnv)
import Text.Pandoc.Lua.Reader (readCustom)
import Text.Pandoc.Lua.Writer (writeCustom)
import Text.Pandoc.Lua.Orphans ()