pandoc-lua-marshal-0.2.2: Use pandoc types in Lua
Copyright© 2021-2023 Albert Krewinkel
LicenseMIT
MaintainerAlbert Krewinkel <albert@zeitkraut.de>
Safe HaskellSafe-Inferred
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 Source #

A simple (legacy-style) table.

Constructors

SimpleTable 

Fields

Instances

Instances details
Show SimpleTable Source # 
Instance details

Defined in Text.Pandoc.Lua.Marshal.SimpleTable

Methods

showsPrec :: Int -> SimpleTable -> ShowS

show :: SimpleTable -> String

showList :: [SimpleTable] -> ShowS

Eq SimpleTable Source # 
Instance details

Defined in Text.Pandoc.Lua.Marshal.SimpleTable

Methods

(==) :: SimpleTable -> SimpleTable -> Bool

(/=) :: SimpleTable -> SimpleTable -> Bool

peekSimpleTable :: forall e. LuaError e => Peeker e SimpleTable Source #

Retrieve a simple table from the stack.

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

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

mkSimpleTable :: LuaError e => DocumentedFunction e Source #

Constructor for the SimpleTable type.