Copyright | Copyright © 2017–2020 Albert Krewinkel |
---|---|
License | GNU GPL, version 2 or above |
Maintainer | Albert Krewinkel <tarleb+pandoc@moltkeplatz.de> |
Stability | alpha |
Safe Haskell | None |
Language | Haskell2010 |
Text.Pandoc.Lua
Contents
Description
Running pandoc Lua filters.
Synopsis
- runLua :: Lua a -> PandocIO (Either LuaException a)
- newtype LuaException = LuaException Text
- data Global
- = FORMAT Text
- | PANDOC_API_VERSION
- | PANDOC_DOCUMENT Pandoc
- | PANDOC_READER_OPTIONS ReaderOptions
- | PANDOC_SCRIPT_FILE FilePath
- | PANDOC_STATE CommonState
- | PANDOC_VERSION
- setGlobals :: [Global] -> Lua ()
- runFilterFile :: FilePath -> Pandoc -> Lua Pandoc
Documentation
runLua :: Lua a -> PandocIO (Either LuaException a) Source #
Run the lua interpreter, using pandoc's default way of environment initialization.
newtype LuaException Source #
Lua error message
Constructors
LuaException Text |
Instances
Show LuaException Source # | |
Defined in Text.Pandoc.Lua.Init Methods showsPrec :: Int -> LuaException -> ShowS show :: LuaException -> String showList :: [LuaException] -> ShowS |
Lua globals
Permissible global Lua variables.
Constructors
FORMAT Text | |
PANDOC_API_VERSION | |
PANDOC_DOCUMENT Pandoc | |
PANDOC_READER_OPTIONS ReaderOptions | |
PANDOC_SCRIPT_FILE FilePath | |
PANDOC_STATE CommonState | |
PANDOC_VERSION |
setGlobals :: [Global] -> Lua () Source #
Set all given globals.
Filters
runFilterFile :: FilePath -> Pandoc -> Lua Pandoc Source #
Transform document using the filter defined in the given file.