pandoc-lua-marshal-0.1.0: Use pandoc types in Lua
Copyright© 2021 Albert Krewinkel
LicenseMIT
MaintainerAlbert Krewinkel <tarleb+pandoc@moltkeplatz.de>
Safe HaskellNone
LanguageHaskell2010

Text.Pandoc.Lua.Marshal.List

Description

Marshaling/unmarshaling functions and constructor for ListAttributes values.

Synopsis

Documentation

pushPandocList :: LuaError e => Pusher e a -> Pusher e [a] Source #

Pushes a list as a numerically-indexed Lua table, and sets a metatable that offers a number of convenience functions.

luaopen_list_ptr :: CFunction Source #

Pointer to the function that opens the List module and pushes it to the stack.

pushListModule :: LuaError e => LuaE e () Source #

Opens the List module and pushes it to the stack.

newListMetatable Source #

Arguments

:: Name 
-> LuaE e ()

setup

-> LuaE e () 

Pushes the metatable of the given List type, creating it if necessary. The setup operation is run when the metatable did not exists, was created, and is then at the top of the stack. The operation may modify the table but must be balanced, and must leave the stack as it found it.