Files
emacs-org/snippets/org-mode/meeting
Daneel a4df1c1634 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.
2026-02-24 15:27:09 +01:00

26 lines
634 B
Plaintext

# -*- mode: snippet -*-
# name: Meeting notes
# key: ;meeting
# --
`(make-string (1+ (or (org-current-level) 0)) ?*)` Meeting: ${1:Topic} — `(format-time-string "%Y-%m-%d")`
| *Date* | `(format-time-string "%Y-%m-%d")` |
| *Topic* | $1 |
| *Attendees* | ${2:names} |
`(make-string (+ 2 (or (org-current-level) 0)) ?*)` Notes
:PROPERTIES:
:UNNUMBERED: notoc
:END:
`(make-string (+ 2 (or (org-current-level) 0)) ?*)` Actions
:PROPERTIES:
:UNNUMBERED: notoc
:END:
`(make-string (+ 2 (or (org-current-level) 0)) ?*)` Next steps
:PROPERTIES:
:UNNUMBERED: notoc
:END:
$0