i am wondering what which way is better. I looked at the following answers HTML5 best practices; section/header/aside/article elements but can't find it. Someone a idea?
a)
<article>
<h1>Title 1</h1>
<section>
<p>content</p>
</section>
<h2>Title 1.1</h2>
<section>
<p>content</p>
</section>
</article>
b)
<article>
<h1>Title 1</h1>
<section>
<p>content</p>
<h2>Title 1.1</h2>
<section>
<p>content</p>
</section>
</section>
</article>
Maybe there is even a better way?
Title 1
content
Title 1.1
content