web/scripts/links-to-html.lua
milovann dffbad640f
All checks were successful
/ publish (push) Successful in 1m18s
up
2024-12-05 12:13:39 +01:00

7 lines
203 B
Lua

-- https://stackoverflow.com/questions/40993488/convert-markdown-links-to-html-with-pandoc
--
-- links-to-html.lua
function Link(el)
el.target = string.gsub(el.target, "%.md", ".html")
return el
end