Re: [O] [BUG] org-html export does not put section numbers in div id

2014-07-31 Thread Nicolas Goaziou
Hello,

Matt Lundin m...@imapmail.org writes:

 Take the following file:

 --8---cut here---start-8---
 #+options: num:nil

 * Headline
 ** Subheading
 * Another headline
 --8---cut here---end---8---

 When exported to html, the section headings are not numbered, as
 expected. 

 However, the section numbers are missing from the outline container
 divs, which look like this:

 div id=outline-container-sec- class=outline-2

 As a result, the table of contents links do not work.

This should be fixed. Thank you for reporting it.


Regards,

-- 
Nicolas Goaziou



[O] [BUG] org-html export does not put section numbers in div id

2014-07-30 Thread Matt Lundin
Take the following file:

--8---cut here---start-8---
#+options: num:nil

* Headline
** Subheading
* Another headline
--8---cut here---end---8---

When exported to html, the section headings are not numbered, as
expected. 

However, the section numbers are missing from the outline container
divs, which look like this:

div id=outline-container-sec- class=outline-2

As a result, the table of contents links do not work.

Here are the relevant portions of the html:

--8---cut here---start-8---
div id=content
h1 class=titletest/h1
div id=table-of-contents
h2Table of Contents/h2
div id=text-table-of-contents
ul
lia href=#sec-1Headline/a
ul
lia href=#sec-1-1Subheading/a/li
/ul
/li
lia href=#sec-2Another headline/a/li
/ul
/div
/div

div id=outline-container-sec- class=outline-2
h2 id=sec-Headline/h2
div class=outline-text-2 id=text-1
/divdiv id=outline-container-sec- class=outline-3
h3 id=sec-Subheading/h3
/div
/div
div id=outline-container-sec- class=outline-2
h2 id=sec-Another headline/h2
/div
/div
--8---cut here---end---8---

Thanks,
Matt