mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-03 09:49:23 +02:00
6 lines
180 B
Lua
6 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
|
|
|