blog/posts/filters/title.lua
2024-02-24 15:22:51 -03:00

15 lines
259 B
Lua
Executable file

-- source: https://stackoverflow.com/a/76048743
local title
function Header(e)
if title then return end
title = pandoc.utils.stringify(e) .. " • jutty.dev"
end
function Meta(e)
if not e.pagetitle then
e.pagetitle = title
return e
end
end