diff options
author | Albert Krewinkel <albert+github@zeitkraut.de> | 2017-11-29 01:20:01 +0100 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-11-28 17:20:01 -0700 |
commit | 0105a3c2930675971ea83da3b987c6b62f97ce26 (patch) | |
tree | 16221c1f6e610118a721f5b072464a9c48adb161 /doc/epub.md | |
parent | 5a225aa6037621209d41927e24d682389d719f50 (diff) | |
download | pandoc-0105a3c2930675971ea83da3b987c6b62f97ce26.tar.gz |
Add basic lua List module (#4099)
The List module is automatically loaded, but not assigned to a global
variable. It can be included in filters by calling `List = require
'List'`.
Lists of blocks, lists of inlines, and lists of classes are now given
`List` as a metatable, making working with them more convenient. E.g.,
it is now possible to concatenate lists of inlines using Lua's
concatenation operator `..` (requires at least one of the operants to
have `List` as a metatable):
function Emph (emph)
local s = {pandoc.Space(), pandoc.Str 'emphasized'}
return pandoc.Span(emph.content .. s)
end
Closes: #4081
Diffstat (limited to 'doc/epub.md')
0 files changed, 0 insertions, 0 deletions