mirror of
https://github.com/simonmichael/hledger.git
synced 2024-12-26 20:02:27 +03:00
2530d9b853
[ci skip]
7 lines
226 B
Lua
7 lines
226 B
Lua
function Para(p)
|
|
if not p.content[1] then return p end
|
|
if not (p.content[1].t == "Str") then return p end
|
|
if not (p.content[1].text == "$TOC$") then return p end
|
|
return pandoc.Null()
|
|
end
|