From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos <nicholas.dokos@hp.com> Subject: Re: new HTML export backend: footnote format [%s]? Date: Tue, 12 Feb 2013 20:58:19 -0500 Message-ID: <4145.1360720699@alphaville> References: <EB9CE8AA-1446-409F-8ED9-ABFD83978D39@nf.mpg.de> Reply-To: nicholas.dokos@hp.com Return-path: <emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org> Received: from eggs.gnu.org ([208.118.235.92]:47951) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from <nicholas.dokos@hp.com>) id 1U5RcB-0000HG-0G for emacs-orgmode@gnu.org; Tue, 12 Feb 2013 20:58:27 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from <nicholas.dokos@hp.com>) id 1U5Rc8-00026z-UI for emacs-orgmode@gnu.org; Tue, 12 Feb 2013 20:58:26 -0500 Received: from g4t0015.houston.hp.com ([15.201.24.18]:11486) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from <nicholas.dokos@hp.com>) id 1U5Rc8-00026W-Os for emacs-orgmode@gnu.org; Tue, 12 Feb 2013 20:58:24 -0500 In-Reply-To: Message from Stefan Vollmar <vollmar@nf.mpg.de> of "Wed, 13 Feb 2013 01:32:34 +0100." <EB9CE8AA-1446-409F-8ED9-ABFD83978D39@nf.mpg.de> List-Id: "General discussions about Org-mode." <emacs-orgmode.gnu.org> List-Unsubscribe: <https://lists.gnu.org/mailman/options/emacs-orgmode>, <mailto:emacs-orgmode-request@gnu.org?subject=unsubscribe> List-Archive: <http://lists.gnu.org/archive/html/emacs-orgmode> List-Post: <mailto:emacs-orgmode@gnu.org> List-Help: <mailto:emacs-orgmode-request@gnu.org?subject=help> List-Subscribe: <https://lists.gnu.org/mailman/listinfo/emacs-orgmode>, <mailto:emacs-orgmode-request@gnu.org?subject=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: Stefan Vollmar <vollmar@nf.mpg.de> Cc: Org Mode Mailing List <emacs-orgmode@gnu.org> Stefan Vollmar <vollmar@nf.mpg.de> wrote: > Hello, > > I have just started using the new exporter in 7.9.3e (7.9.3e-999-ge5322) for HTML output. > > After applying these changes to our org files: > > #+style -> #+html_style > #+setupfile -> #+include and path in "" > > our HTML output is almost back to normal. Nice work! > So it seems we are already down to the more "cosmetic" stuff. > > This apparently does not have an effect any more: > (setq org-export-html-footnote-format " [%s]") > - is there a new way to configure this format for the new export backends (we prefer "[123]" references to superscripted footnotes)? > Probably (i.e. I did not test), customizing these two: ,---- | (defcustom org-html-footnote-format "<sup>%s</sup>" | "The format for the footnote reference. | %s will be replaced by the footnote reference itself." | :group 'org-export-html | :type 'string) | | (defcustom org-html-footnote-separator "<sup>, </sup>" | "Text used to separate footnotes." | :group 'org-export-html | :type 'string) `---- would do the job. Nick