From mboxrd@z Thu Jan 1 00:00:00 1970 From: Haider Rizvi Subject: Re: Structuring and (cross)linking information in org-mode Date: Sat, 04 Jul 2015 19:21:21 -0700 Message-ID: References: <0C6EB88C-208A-4378-8475-B39A6D40F9D3@daniel-hertrich.photo> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59400) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZBZYm-0002ow-FO for emacs-orgmode@gnu.org; Sat, 04 Jul 2015 22:21:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZBZYj-0002Qv-9d for emacs-orgmode@gnu.org; Sat, 04 Jul 2015 22:21:36 -0400 Received: from plane.gmane.org ([80.91.229.3]:44514) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZBZYj-0002PZ-2G for emacs-orgmode@gnu.org; Sat, 04 Jul 2015 22:21:33 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1ZBZYg-0004mT-Jh for emacs-orgmode@gnu.org; Sun, 05 Jul 2015 04:21:30 +0200 Received: from ip70-171-199-71.tc.ph.cox.net ([70.171.199.71]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 05 Jul 2015 04:21:30 +0200 Received: from harizvi by ip70-171-199-71.tc.ph.cox.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 05 Jul 2015 04:21:30 +0200 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Pascal Fleury 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