pandoc/test/lua/plain-to-para.lua
Albert Krewinkel e6a536befc
Lua filter: revert to non-destructuring filters
We want to provide an interface familiar to users of other filtering
libraries.
2017-04-15 21:40:48 +02:00

6 lines
89 B
Lua

return {
{ Plain = function (elem)
return pandoc.Para(elem.content)
end,
}
}