mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2024-11-21 19:42:14 +00:00
7 lines
180 B
Lua
7 lines
180 B
Lua
-- https://stackoverflow.com/questions/40993488/convert-markdown-links-to-html-with-pandoc
|
|
function Link(el)
|
|
el.target = string.gsub(el.target, "%.md", ".html")
|
|
return el
|
|
end
|
|
|