Stefan Vollmar <voll...@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