1
0
Files
plaintextaccounting/headings.lua
Simon Michael eb8b829492 filter cleanups
2023-11-30 15:22:48 -10:00

9 lines
254 B
Lua

-- Make all headings (except the h1 added by page.tmpl)
-- clickable links to themselves, for easy bookmarking/linking.
-- site.css controls their style.
function Header(el)
el.content = pandoc.Link(el.content, '#' .. el.identifier)
return el
end