V8.02.512.2025.05.30
Signed-off-by: Marc S. Weidner <msw@coresecret.dev>
This commit is contained in:
8
.gitea/properties/lua/linkfix.lua
Normal file
8
.gitea/properties/lua/linkfix.lua
Normal file
@@ -0,0 +1,8 @@
|
||||
-- Linkfix.lua
|
||||
function Link (el)
|
||||
-- wenn Linkziel auf .md endet, ändere es zu .html
|
||||
if el.target:match('%.md$') then
|
||||
el.target = el.target:gsub('%.md$', '.html')
|
||||
end
|
||||
return el
|
||||
end
|
||||
Reference in New Issue
Block a user