[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [O] Structuring and (cross)linking information in org-mode
From: |
Haider Rizvi |
Subject: |
Re: [O] Structuring and (cross)linking information in org-mode |
Date: |
Sat, 04 Jul 2015 19:21:21 -0700 |
User-agent: |
Gnus/5.130012 (Ma Gnus v0.12) Emacs/24.5 (darwin) |
Pascal Fleury <address@hidden> writes:
> I think properties can be used for this.
I use a yasnippet for writing down my meeting minutes, that also
creates some properties. Daniel may find it useful.
# -*- mode: snippet -*-
# name : mtgmins
# key : mtgmins
# contributor: Haider Rizvi
# --
`(org-insert-heading nil)`[`(format-time-string "%Y-%m-%d %a" (current-time))`]
${1:Meeting title}
Attendees: Haider, ${2:Attendees}
`(org-set-property "STYLE" "Meeting minutes")` `(org-set-property "STARTED"
(format-time-string "[%Y-%m-%d %H:%M:%S]" (current-time)))`
- Haider