e6a536befc
We want to provide an interface familiar to users of other filtering libraries.
11 lines
200 B
Lua
11 lines
200 B
Lua
return {
|
|
{
|
|
RawBlock = function (elem)
|
|
if elem.format == "markdown" then
|
|
return pandoc.reader.markdown.read_block(elem.text)
|
|
else
|
|
return elem
|
|
end
|
|
end,
|
|
}
|
|
}
|