mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 09:51:57 -05:00
5 lines
121 B
Lua
5 lines
121 B
Lua
|
function Link(el)
|
||
|
el.target = string.gsub(el.target, "%.md", ".html") -- change .md to .html links
|
||
|
return el
|
||
|
end
|