Hello Jonathan. Thanks for all this work. I was wondering if the use of <h1>, <h2>, etc. nested inside <section> has been considered for simplifying the heading ranks? If I understood [1] and [2] correctly, the following are semantically identical in HTML5:
<h1>XXX</h1> <section> <h2>YYY</h2> <section> <h3>ZZZ</h3> and <h1>XXX</h1> <section> <h1>YYY</h1> <section> <h1>ZZZ</h1> Wouldn't the use of <section> allows to reset the <h#> counting to 1 for that section, which would free the developer to care about what was the rank of last <h#> element? If each field and method is in its own <section>, wouldn't it allow developers to use <h1>, <h2>, etc. in their javadoc for each field/method? Martin [1] https://www.w3.org/TR/2011/WD-html5-author-20110809/headings-and-sections.html#headings-and-sections [2] https://www.w3.org/TR/2011/WD-html5-author-20110809/the-h1-h2-h3-h4-h5-and-h6-elements.html#rank