From b7f5efdc4e1ed07f295d28a05fab3588c4194110 Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Sun, 11 Dec 2011 16:50:05 +0100 Subject: [PATCH] New option `org-export-html-headline-anchor-format'. * org-html.el (org-export-html-headline-anchor-format): New option. (org-html-level-start): Use the new option. This was requested by Alan L Tyree. --- lisp/org-html.el | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/lisp/org-html.el b/lisp/org-html.el index fa3811fb9..9527fcf49 100644 --- a/lisp/org-html.el +++ b/lisp/org-html.el @@ -355,6 +355,14 @@ CSS classes, then this prefix can be very useful." :group 'org-export-html :type 'string) +(defcustom org-export-html-headline-anchor-format "" + "Format for anchors in HTML headlines. +It requires to %s: both will be replaced by the anchor referring +to the headline (e.g. \"sec-2\"). When set to `nil', don't insert +HTML anchors in headlines." + :group 'org-export-html + :type 'string) + (defcustom org-export-html-preamble t "Non-nil means insert a preamble in HTML export. @@ -2438,8 +2446,9 @@ When TITLE is nil, just close all open levels." (mapconcat (lambda (x) (setq x (org-solidify-link-text (if (org-uuidgen-p x) (concat "ID-" x) x))) - (format "" - x x)) + (if (stringp org-export-html-headline-anchor-format) + (format org-export-html-headline-anchor-format x x) + "")) extra-targets "")) (while (>= l level) -- git format-patch -1 --stdout -C b7f5efdc4e1ed07f295d28a05fab3588c4194110