mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
2e613db999
This fixes the current bug at the end of less(1), which links to the wrong file ".html" instead of "man.html".
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
|