mirror of
https://github.com/simonmichael/hledger.git
synced 2024-11-07 21:15:19 +03:00
parent
08a75985a3
commit
1062331f7e
4
tools/pandoc-dedent-code-blocks.lua
Normal file
4
tools/pandoc-dedent-code-blocks.lua
Normal file
@ -0,0 +1,4 @@
|
||||
-- convert code blocks to unindented plain text
|
||||
function CodeBlock(b)
|
||||
return pandoc.Para{ pandoc.Str(b.text) }
|
||||
end
|
4
tools/pandoc-wiki-links.lua
Normal file
4
tools/pandoc-wiki-links.lua
Normal file
@ -0,0 +1,4 @@
|
||||
-- github wiki links -> markdown links
|
||||
function Para(p)
|
||||
return pandoc.Str(p.t)
|
||||
end
|
Loading…
Reference in New Issue
Block a user