mirror of
https://github.com/jgm/pandoc.git
synced 2026-08-24 17:26:32 +00:00
Try function `Inline`/`Block` if no other filter function of the respective type matches an element. Closes: #3859
12 lines
179 B
Lua
12 lines
179 B
Lua
local num_blocks = 0
|
|
|
|
function Block(el)
|
|
num_blocks = num_blocks + 1
|
|
end
|
|
|
|
function Pandoc(blocks, meta)
|
|
return pandoc.Pandoc {
|
|
pandoc.Para{pandoc.Str(num_blocks)}
|
|
}
|
|
end
|