summaryrefslogtreecommitdiffstats
path: root/filters/headers.lua
blob: b7ab542fef6957962a2d72977e491368019cd6c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
function Header(el)
    if el.level == 1 then
        local newchildren = pandoc.List()
        newchildren:insert(pandoc.Span(el.content, { class = 's-headings__primary' }))
        el.content = newchildren
    end

    return el
end