mirror of
https://github.com/containers/podman.git
synced 2025-05-20 00:27:03 +08: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>
6 lines
110 B
Lua
6 lines
110 B
Lua
# links-to-html.lua
|
|
function Link(el)
|
|
el.target = string.gsub(el.target, "%.1.md", ".html")
|
|
return el
|
|
end
|