fix(snippets): adaptive heading level; subject mirror in heading+table

This commit is contained in:
2026-02-24 15:15:14 +01:00
parent 54d6fb27ed
commit f363782bd5
4 changed files with 21 additions and 20 deletions

View File

@@ -2,13 +2,13 @@
# name: Weekly review
# key: ;weekly
# --
* Weekly Review — `(format-time-string "W%V %Y")`
`(make-string (1+ (or (org-current-level) 0)) ?*)` Weekly Review — `(format-time-string "W%V %Y")`
** Done this week
`(make-string (+ 2 (or (org-current-level) 0)) ?*)` Done this week
** In progress
`(make-string (+ 2 (or (org-current-level) 0)) ?*)` In progress
** Blocked
`(make-string (+ 2 (or (org-current-level) 0)) ?*)` Blocked
** Next week focus
`(make-string (+ 2 (or (org-current-level) 0)) ?*)` Next week focus
$0