cashmere

cashmere

org capture templates

Preface

A small collection of org capture templates

Example

  (setq org-capture-templates
        `( 
          ("s" "shorts-todo" entry (file+headline ,(concat my-org-files-path "misc.org") "shorts")
           ,my-capture-template-next :empty-lines 2)
          ("e" "Event" entry (file+headline ,(concat my-org-files-path "misc.org") "Events")
           "* %?\n:PROPERTIES:\n:CREATED: %U\n:END:\n\n" :empty-lines 2)
          ("b" "Bookmark" entry (file+headline ,(concat my-org-files-path "notes.org") "Bookmarks")
           "* %x%?\n:PROPERTIES:\n:CREATED: %U\n:END:\n\n" :empty-lines 2)
          ("p" "public voit" entry (file+headline ,(concat my-org-files-path "public_voit.org") "Captured Blog Articles")
           "* TODO %?        :blog:%^g\n:PROPERTIES:\n:CREATED: %U\n:ID: %^{prompt}\n:END:\n\n-----------------------\n- [ ] link on older/similar articles?\n- [ ] link on tag pages?\n\n" :empty-lines 2)
          ("a" "anzuschauen" entry (file+headline ,(concat my-org-files-path "misc.org") "Anzuschauen")
           "* TODO %?\n:PROPERTIES:\n:CREATED: %U\n:END:\n%x\n\n" :empty-lines 2)
;;          ("B" "Besorgung" entry (file+headline ,(concat my-org-files-path "hardware.org") "Besorgungen")
;;           ,my-capture-template-next :empty-lines 2)

          ("s" "shorts-todo" entry (file+headline ,(concat my-org-files-path "misc.org") "shorts")
           ,my-capture-template-next :empty-lines 2)
          ("e" "Event" entry (file+headline ,(concat my-org-files-path "misc.org") "Events")
           "* %?\n:PROPERTIES:\n:CREATED: %U\n:END:\n\n" :empty-lines 2)
          ("b" "Bookmark" entry (file+headline ,(concat my-org-files-path "notes.org") "Bookmarks")
           "* %x%?\n:PROPERTIES:\n:CREATED: %U\n:END:\n\n" :empty-lines 2)
          ("p" "public voit" entry (file+headline ,(concat my-org-files-path "public_voit.org") "Captured Blog Articles")
           "* TODO %?        :blog:%^g\n:PROPERTIES:\n:CREATED: %U\n:ID: %^{prompt}\n:END:\n\n-----------------------\n- [ ] link on older/similar articles?\n- [ ] link on tag pages?\n\n" :empty-lines 2)
          ("a" "anzuschauen" entry (file+headline ,(concat my-org-files-path "misc.org") "Anzuschauen")
           "* TODO %?\n:PROPERTIES:\n:CREATED: %U\n:END:\n%x\n\n" :empty-lines 2)
;;          ("B" "Besorgung" entry (file+headline ,(concat my-org-files-path "hardware.org") "Besorgungen")
;;           ,my-capture-template-next :empty-lines 2)
          )
        )

References

emacs-config-which-includes-org-capture-templates