pandoc/test/lua/module
Albert Krewinkel 4ede11a75f
Lua: add methods insert, remove, and sort to pandoc.List
The functions `table.insert`, `table.remove`, and `table.sort` are added
to pandoc.List elements.  They can be used as methods, e.g.

    local numbers = pandoc.List {2, 3, 1}
    numbers:sort()     -- numbers is now {1, 2, 3}
2020-01-11 21:31:20 +01:00
..
pandoc-list.lua Lua: add methods insert, remove, and sort to pandoc.List 2020-01-11 21:31:20 +01:00
pandoc-mediabag.lua Lua modules: test pandoc.mediabag 2019-05-30 08:44:40 +02:00
pandoc-types.lua Lua Version type: shorten "version too old" message 2019-05-29 22:59:45 +02:00
pandoc-utils.lua Replace Element and makeHierarchical with makeSections. 2019-09-08 22:20:19 -07:00
pandoc.lua Lua filters: allow passing of HTML-like tables instead of Attr (#5750) 2019-09-15 12:11:58 -07:00