mirror of
https://github.com/jgm/pandoc.git
synced 2026-08-29 01:41:20 +08:00
4ede11a75f
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}