mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-08 16:45:49 +00:00
Filtering functions take element components as arguments instead of the whole block elements. This resembles the way elements are handled in custom writers.
7 lines
87 B
Lua
7 lines
87 B
Lua
return {
|
|
{ Plain = function (content)
|
|
return pandoc.Para(content)
|
|
end,
|
|
}
|
|
}
|