mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-05 16:35:45 +00:00
* Update scipts to produce darwin and windows output * Update batch file to re-direct help requests to browser * Add pandoc filter for markdown to html links Signed-off-by: Jhon Honce <jhonce@redhat.com>
5 lines
110 B
Lua
5 lines
110 B
Lua
# links-to-html.lua
|
|
function Link(el)
|
|
el.target = string.gsub(el.target, "%.1.md", ".html")
|
|
return el
|
|
end
|