mirror of
https://github.com/simonmichael/hledger.git
synced 2024-11-07 21:15:19 +03:00
5 lines
119 B
Lua
5 lines
119 B
Lua
|
-- convert code blocks to unindented plain text
|
||
|
function CodeBlock(b)
|
||
|
return pandoc.Para{ pandoc.Str(b.text) }
|
||
|
end
|