web/scripts/links-to-html.lua
milovann 5ff9c3b39c
All checks were successful
/ publish (push) Successful in 57s
up
2024-12-06 15:59:26 +01:00

11 lines
264 B
Lua

-- https://stackoverflow.com/questions/40993488/convert-markdown-links-to-html-with-pandoc
--
-- links-to-html.lua
function Link(el)
if el.content[1].text == "Éditer" then
return el
else
el.target = string.gsub(el.target, "%.md", ".html")
return el
end
end