Select Git revision
mxl_wtp_space_caseA_rentINT.R
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
custom_app.lua 340 B
local in_appendix = false
Header = function(h)
if h.level == 1 then
if h.classes:includes("appendix") then
in_appendix = true
h.attributes["visibility"] = "uncounted"
else
in_appendix = false
end
end
if h.level == 2 and in_appendix then
h.attributes["visibility"] = "uncounted"
end
return h
end