From 96bcf8cecc92c70cdb86ee288eb57795ef6395e7 Mon Sep 17 00:00:00 2001 From: Jhon Honce Date: Mon, 16 Sep 2019 09:23:57 -0700 Subject: Support podman-remote help on windows * 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 --- docs/links-to-html.lua | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 docs/links-to-html.lua (limited to 'docs/links-to-html.lua') diff --git a/docs/links-to-html.lua b/docs/links-to-html.lua new file mode 100644 index 000000000..74072a9e4 --- /dev/null +++ b/docs/links-to-html.lua @@ -0,0 +1,5 @@ +# links-to-html.lua +function Link(el) + el.target = string.gsub(el.target, "%.1.md", ".html") + return el +end -- cgit v1.2.3-54-g00ecf