web/scripts/links-to-html.lua

12 lines
264 B
Lua
Raw Permalink Normal View History

2024-12-05 12:13:39 +01:00
-- https://stackoverflow.com/questions/40993488/convert-markdown-links-to-html-with-pandoc
--
-- links-to-html.lua
function Link(el)
2024-12-06 15:59:26 +01:00
if el.content[1].text == "Éditer" then
return el
else
2024-12-05 12:13:39 +01:00
el.target = string.gsub(el.target, "%.md", ".html")
return el
end
2024-12-06 15:59:26 +01:00
end