fix(snippets): add UNNUMBERED notoc to sub-headings in adr/meeting/weekly

Sub-headings (Problem statement, Decision, etc.) should not appear in
TOC when using #+OPTIONS: toc:N. Main template heading remains in TOC.
This commit is contained in:
2026-02-24 15:27:09 +01:00
parent f363782bd5
commit a4df1c1634
3 changed files with 39 additions and 0 deletions

View File

@@ -5,10 +5,22 @@
`(make-string (1+ (or (org-current-level) 0)) ?*)` Weekly Review — `(format-time-string "W%V %Y")`
`(make-string (+ 2 (or (org-current-level) 0)) ?*)` Done this week
:PROPERTIES:
:UNNUMBERED: notoc
:END:
`(make-string (+ 2 (or (org-current-level) 0)) ?*)` In progress
:PROPERTIES:
:UNNUMBERED: notoc
:END:
`(make-string (+ 2 (or (org-current-level) 0)) ?*)` Blocked
:PROPERTIES:
:UNNUMBERED: notoc
:END:
`(make-string (+ 2 (or (org-current-level) 0)) ?*)` Next week focus
:PROPERTIES:
:UNNUMBERED: notoc
:END:
$0