blob: 6dd7312e05e0117d40c3cfb9d6477e90addb0993 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
{- |
Module : Text.Pandoc.Lua
Copyright : Copyright © 2017-2024 Albert Krewinkel
License : GNU GPL, version 2 or above
Maintainer : Albert Krewinkel <[email protected]>
Stability : alpha
Running pandoc Lua filters.
-}
module Text.Pandoc.Lua
( -- * High-level functions
applyFilter
, loadCustom
-- * Low-level functions
, Global(..)
, setGlobals
, runLua
, runLuaNoEnv
-- * Engine
, 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.Run (runLua, runLuaNoEnv)
import Text.Pandoc.Lua.Orphans ()
|