From mboxrd@z Thu Jan 1 00:00:00 1970 From: Juan Pechiar Subject: Re: Export individual clock entries to HTML? Date: Thu, 1 Mar 2012 17:04:27 -0200 Message-ID: <20120301190427.GB6258@soloJazz.com> References: <4F4FAD78.1020702@duke.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([208.118.235.92]:44875) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S3BIr-00084V-2g for emacs-orgmode@gnu.org; Thu, 01 Mar 2012 14:05:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S3BIo-00068H-Vj for emacs-orgmode@gnu.org; Thu, 01 Mar 2012 14:04:36 -0500 Received: from oproxy4-pub.bluehost.com ([69.89.21.11]:56484) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1S3BIo-000683-Ep for emacs-orgmode@gnu.org; Thu, 01 Mar 2012 14:04:34 -0500 Content-Disposition: inline In-Reply-To: <4F4FAD78.1020702@duke.edu> 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: "Jesse W. Wilson" Cc: emacs-orgmode@gnu.org On Thu, Mar 01, 2012 at 12:10:16PM -0500, Jesse W. Wilson wrote: > After a year and a half with paper notebooks, I've decided to > return to org-mode. :) One thing I could never figure out, though, > is how to get org-export-as-html to export individual clock entries. > The clock summary tables are very nice, but I would also like to see > clock-in and clock-out timestamps for each entry I make. > > Is there an option or setting I am missing? Add the 'd:t' option to the export options of the clocking subtree: :PROPERTIES: :EXPORT_OPTIONS: d:t :END: (or to the file export options). This will show drawer contents for every entry. .j.