Normalize the construction of outline-container DIV ID

* ox-html.el (org-html-headline): Normalize the construction of
  outline-container DIVs by always using the inner headline ID.

TINYCHANGE
This commit is contained in:
Francesco Pizzolante 2013-04-09 13:38:19 +02:00 committed by Bastien Guerry
parent 6c11a0664e
commit 01ce58b3d6
1 changed files with 1 additions and 1 deletions

View File

@ -2197,7 +2197,7 @@ holding contextual information."
"div")
(format "outline-container-%s"
(or (org-element-property :CUSTOM_ID headline)
section-number))
(concat "sec-" section-number)))
(concat (format "outline-%d" level1) (and extra-class " ")
extra-class)
(format "\n<h%d id=\"%s\">%s%s</h%d>\n"