According to https://html.spec.whatwg.org/multipage/sections.html#the-article-element a user-submitted comment on a blog post could be an <article>
but the same page explains that "A section forms part of something else. An article is its own thing."
By own thing I understand that what is inside the block will make sense without additional information. But this is not the case for the comments on this example blog post because I need the article's information to understand which tennis match the users are talking about.
Am I therefore right in saying that <section>
should replace <article>
for the comments in the last <section>
?
<article>
<header>
<h1>Roger Federer vs Novak Djokovic: Wimbledon 2019 Final</h1>
</header>
<section>
<h3>First Set</h3>
</section>
<section>
<h3>Second Set</h3>
</section>
<section>
<article itemprop="comment" itemscope itemtype="http://schema.org/UserComments" id="c1">
<p>Posted by: <span itemprop="creator" itemscope itemtype="http://schema.org/Person"> <span itemprop="name">Jane Doe</span></span></p>
<p>I cannot believe he missed those two match points!</p>
</article>
<article itemprop="comment" itemscope itemtype="http://schema.org/UserComments" id="c2">
<p>Posted by: <span itemprop="creator" itemscope itemtype="http://schema.org/Person"> <span itemprop="name">John Doe</span></span></p>
<p>The last point of the third game in set 1 was epic!</p>
</article>
</section>
</article>