tools: commit missing pandoc filters (#981)

[ci skip]
This commit is contained in:
Simon Michael 2019-03-04 08:07:01 -08:00
parent 08a75985a3
commit 1062331f7e
2 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,4 @@
-- convert code blocks to unindented plain text
function CodeBlock(b)
return pandoc.Para{ pandoc.Str(b.text) }
end

View File

@ -0,0 +1,4 @@
-- github wiki links -> markdown links
function Para(p)
return pandoc.Str(p.t)
end