From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rick Moynihan Subject: Re: Properties and Property Drawers in HTML export Date: Wed, 2 Dec 2009 12:21:34 +0000 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NFoDh-00078p-NJ for emacs-orgmode@gnu.org; Wed, 02 Dec 2009 07:22:09 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NFoDc-000744-PL for emacs-orgmode@gnu.org; Wed, 02 Dec 2009 07:22:08 -0500 Received: from [199.232.76.173] (port=50017 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NFoDc-00073j-9o for emacs-orgmode@gnu.org; Wed, 02 Dec 2009 07:22:04 -0500 Received: from mail-ew0-f224.google.com ([209.85.219.224]:36674) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NFoDb-000652-Vh for emacs-orgmode@gnu.org; Wed, 02 Dec 2009 07:22:04 -0500 Received: by ewy24 with SMTP id 24so156959ewy.26 for ; Wed, 02 Dec 2009 04:22:02 -0800 (PST) In-Reply-To: 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: emacs-orgmode@gnu.org 2009/12/2 Rick Moynihan : > 2009/12/2 Rick Moynihan : >> Does anyone know if it's possible to export org-mode properties and >> property drawers in a HTML export? >> >> R. > > Ok, just discovered the :drawers option! > > The documentation claims that supplying a list of properties allows > you to filter which ones are exported, however I can't get this > working... e.g. I've tried setting org-publish-project-alist to both: > > :drawers ("FOO" "BAR") > > and: > > :drawers '("FOO" "BAR") > > Neither seem to work... any ideas? > Also, the properties are exported into the HTML like so:
PROPERTIES
:FOO: blah
:BAR: blah blah
Would something like the following not be a better format for parsing/processing?
FOO
blah
BAR
blah blah
R.