1
0

wikilinks.lua cleanup

This commit is contained in:
Simon Michael
2023-11-29 08:31:55 -10:00
parent 5d7a2983e6
commit 91a73a3e10

25
wikilinks.lua Normal file
View File

@@ -0,0 +1,25 @@
-- Pandoc's wikilinks_title_after_pipe extension does basic hyperlinking
-- of [[bracketed wiki links]]. This lua filter does the rest, mimicking
-- Obsidian's wiki linking where possible. It
-- - replaces spaces with hyphens in the uri path and fragment
-- - adds ".html" to the path (preserving any fragment)
-- - lower-cases the fragment
function Link(elem)
if elem.title == "wikilink" then
t = elem.target .. "#"
t = string.gsub(t, " ", "-")
-- t = string.gsub(t, "'", "")
path, frag = string.match(t, "([^#]*)#([^#]*)")
t = path
if string.len(path) > 0 then
t = t .. ".html"
end
if string.len(frag) > 0 then
frag = pandoc.text.lower(frag)
t = t .. "#" .. frag
end
elem.target = t
end
return elem
end