[Bug 7552] Add <article> examples illustrating how to use the element, without an unnecessary <section> wrapper inside.

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





--- Comment #1 from Lachlan Hunt <lachlan.hunt@lachy.id.au>  2009-09-09 13:11:34 ---
The example should focus on cases where authors currently try to insert a
<section> element wrapper between the header and footer.  An example like the
following should help people to understand that it's not necessary:

<article>
  <header>
    <h1>Insert a Heading Here</h1>
    <p>Published <time datetime="2009-09-09">September, 9 2009</time>
  </header>

  <p>Insert some example article content here.

  <ul>
    <li>Maybe a list
    <li>Or something
  </ul>

  <p>And some more paragraphs.

  <section>
     <h1>A Subsection</h1>
     <p>The subsection should illustrate that <section> is more than just a
wrapper.
  </section>
</article>

(I expect you'll be able to come up with something a little more creative for
the article content than I have.)


-- 
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 Wednesday, 9 September 2009 13:11:45 UTC