From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rick Frankel Subject: new exporter and derived-backend Date: Tue, 5 Feb 2013 18:20:38 -0500 Message-ID: <20130205232038.GA51164@BigDog.local> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([208.118.235.92]:38420) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U2rog-0002Ff-Pb for emacs-orgmode@gnu.org; Tue, 05 Feb 2013 18:20:45 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1U2roe-00053I-8m for emacs-orgmode@gnu.org; Tue, 05 Feb 2013 18:20:42 -0500 Received: from [204.62.15.78] (port=57151 helo=mail.rickster.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U2roe-00053B-4r for emacs-orgmode@gnu.org; Tue, 05 Feb 2013 18:20:40 -0500 Received: from BigDog.local (pool-71-190-193-126.nycmny.fios.verizon.net [71.190.193.126]) by mail.rickster.com (Postfix) with ESMTPS id 154B622BF1 for ; Tue, 5 Feb 2013 18:20:39 -0500 (EST) Content-Disposition: inline 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 Hi- I am trying to define a backend derived from `e-html' for export to s5. However, it seems that the derived settings in `:options-alist' are not being respected. For instance: #+begin_src elisp (org-export-define-derived-backend foo e-html :options-alist ((:style-include-scripts nil nil nil t) (:style-include-default nil nil nil t) (:style nil nil "" t))) (org-export-to-buffer 'foo "*foo*") (with-current-buffer "*foo*" (buffer-substring (point-min) (point-max))) #+end_src Still includes both the default style and the scripts and does not include the `:style' specified above. Abbreviated results from the above: #+results: #+begin_example #+end_example am i missing something or is there a problem in org-e-html? rick