From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric S Fraga Subject: Re: HTML export of inline tasks Date: Wed, 9 May 2012 17:11:37 +0930 Message-ID: <87lil1g5se.fsf@ucl.ac.uk> References: Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([208.118.235.92]:47645) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SS1Wr-0006Ss-Q6 for emacs-orgmode@gnu.org; Wed, 09 May 2012 03:41:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SS1Wq-0001sb-5q for emacs-orgmode@gnu.org; Wed, 09 May 2012 03:41:45 -0400 Received: from db3ehsobe006.messaging.microsoft.com ([213.199.154.144]:12836 helo=db3outboundpool.messaging.microsoft.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SS1Wp-0001sU-SK for emacs-orgmode@gnu.org; Wed, 09 May 2012 03:41:44 -0400 In-Reply-To: (Manish's message of "Wed, 9 May 2012 11:22:17 +0530") 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: Manish Cc: Org-Mode --=-=-= Content-Type: text/plain Manish writes: > Dear List, > > How can I export SCHEDULED, DEADLINE and tags for inlinetasks? I have > org-inlinetask.el loaded and am using older HTML exporter (the one not > based on org-elements.el). I looked at variable > org-inlinetasl-export-template but still unsure how should I set it to > exposed scheduling information in HTML. I am using the default css. > > GNU Emacs 24.1.50.1 on Windows 7 > Org-mode from Git as of May 7 2012 with head on commit > b797c88d700a5e636c0f9fdb108d1846ce6e1f08 > > Thanks! > -- > Manish Sorry, I missed that you had already looked at that variable. I set it as follows, which might help you figure this out: --=-=-= Content-Type: text/emacs-lisp Content-Disposition: inline (setq org-inlinetask-export-templates '((html "
  • %s%s

    %s

" '((unless (eq todo "") (format "%s%s " class todo todo priority)) heading content)))) --=-=-= Content-Type: text/plain Content-Disposition: inline This assumes the default CSS so that the appropriate TODO styles have been defined. I must admit that I seldom export to HTML (esp. now with the ODT exporter) so I cannot remember if this was a good template or not. Hope this helps. -- : Eric S Fraga (GnuPG: 0xC89193D8FFFCF67D) in Emacs 24.1.50.1 : using Org release_7.8.09-544-g505cc7 --=-=-=--