[Bug 11198] Heading structure(h1-h6) rigidity makes it very hard to reuse content

http://www.w3.org/Bugs/Public/show_bug.cgi?id=11198

Tab Atkins Jr. <jackalmage@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jackalmage@gmail.com

--- Comment #1 from Tab Atkins Jr. <jackalmage@gmail.com> 2010-11-02 18:22:45 UTC ---
This is already allowed in HTML5.  Sectioning elements reset the heading
hierarchy, so you can start over again from <h1>.

For example, the following two snippets generate the same outline structure:

<h1>Top level heading</h1>
<p>text</p>
<h2>Second-level heading</h1>
<p>text</p>

...

<h1>Top level heading</h1>
<p>text</p>
<section>
  <h1>Second-level heading</h1>
  <p>text</p>
</section>

-- 
Configure bugmail: http://www.w3.org/Bugs/Public/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.

Received on Tuesday, 2 November 2010 18:22:47 UTC