pandoc-lua-marshal-0.2.6: Use pandoc types in Lua
Copyright© 2021-2024 Albert Krewinkel
LicenseMIT
MaintainerAlbert Krewinkel <albert@zeitkraut.de>
Safe HaskellNone
LanguageHaskell2010

Text.Pandoc.Lua.Marshal.SimpleTable

Description

Definition and marshaling of the SimpleTable data type used as a convenience type when dealing with tables.

Synopsis

Documentation

data SimpleTable #

A simple (legacy-style) table.

Instances

Instances details
Show SimpleTable # 
Instance details

Defined in Text.Pandoc.Lua.Marshal.SimpleTable

Eq SimpleTable # 
Instance details

Defined in Text.Pandoc.Lua.Marshal.SimpleTable

peekSimpleTable :: LuaError e => Peeker e SimpleTable #

Retrieve a simple table from the stack.

pushSimpleTable :: LuaError e => SimpleTable -> LuaE e () #

Push a simple table to the stack by calling the pandoc.SimpleTable constructor.

mkSimpleTable :: LuaError e => DocumentedFunction e #

Constructor for the SimpleTable type.