Skip to content
Snippets Groups Projects
Select Git revision
  • 05d9bfb49fc92353343ff9ba6a49de79add8b797
  • main default protected
  • test_coef
  • 21-things-to-take-care-of-before-submission
4 results

mxl_wtp_space_caseA_rentINT.R

Blame
  • 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