From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: Hiding Properties and Log drawers from export. Date: Mon, 14 Mar 2011 12:51:47 -0400 Message-ID: <8158.1300121507@alphaville.dokosmarshall.org> References: <25347.1300113425@alphaville.dokosmarshall.org> Reply-To: nicholas.dokos@hp.com Return-path: Received: from [140.186.70.92] (port=53260 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PzB08-0002Ca-JP for emacs-orgmode@gnu.org; Mon, 14 Mar 2011 12:52:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PzB06-0001yx-Ua for emacs-orgmode@gnu.org; Mon, 14 Mar 2011 12:52:12 -0400 Received: from vms173005pub.verizon.net ([206.46.173.5]:54798) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PzB06-0001yQ-NE for emacs-orgmode@gnu.org; Mon, 14 Mar 2011 12:52:10 -0400 Received: from alphaville.dokosmarshall.org ([unknown] [173.76.32.106]) by vms173005.mailsrvcs.net (Sun Java(tm) System Messaging Server 7u2-7.02 32bit (built Apr 16 2009)) with ESMTPA id <0LI2004XS46BGRE0@vms173005.mailsrvcs.net> for emacs-orgmode@gnu.org; Mon, 14 Mar 2011 11:51:53 -0500 (CDT) In-reply-to: Message from John Tarbotton of "Mon, 14 Mar 2011 15:51:38 -0000." List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: John Tarbotton Cc: nicholas.dokos@hp.com, emacs-orgmode@gnu.org John Tarbotton wrote: > Nick Dokos hp.com> writes: > > > John Tarbotton gmail.com> wrote: > > > > > Is there a way to prevent the Property and Logfile Drawers from > > > being exported? > > > > Check the value of the following variable (with C-h v > > org-export-with-drawers ): > > > > Nick > > > > Thanks for the reply that would seem to be what I need. In fact it got me > half way there. I set it nil using the menu. The LOGFILE drawers are gone > but the property drawers are still there. The documentation indicates it > works with the PROPERTIES draw so I'll keep trying. Maybe I did something > to the .org file that is messing it up. > That's strange. Maybe you can try by setting the variable in the file explicitly. By uncommenting one of the OPTIONS lines below and leaving the other two commented out, I can get just the LOGBOOK exported; or both LOGBOOK and PROPERTIES; or neither. --8<---------------cut here---------------start------------->8--- #+OPTIONS: d:("LOGBOOK") ##+OPTIONS: d:t ##+OPTIONS: d:nil * Target * Test :PROPERTIES: :COLUMNS: %40ITEM %Link1 %Link2 :END: ** Test Heading :LOGBOOK: CLOCK: [2011-03-14 Mon 12:35]--[2011-03-14 Mon 12:35] => 0:00 :END: :PROPERTIES: :Link1: [[* Target]] :END: ** Test File :PROPERTIES: :Link1: [[file:somewhere]] :END: --8<---------------cut here---------------end--------------->8--- Nick