Added link tags

This commit is contained in:
rasmus-kirk
2024-02-26 13:34:15 +01:00
parent f2e12924a4
commit 621e838f8c
5 changed files with 47 additions and 3 deletions
+14
View File
@@ -0,0 +1,14 @@
-- Adds anchor links to headings with IDs.
function Header (h)
if h.identifier ~= '' then
-- an empty link to this header
local anchor_link = pandoc.Link(
{}, -- content
'#' .. h.identifier, -- href
'', -- title
{class = 'anchor', ['aria-hidden'] = 'true'} -- attributes
)
h.content:insert(1, anchor_link)
return h
end
end