节前文章中的 h1

h1 in article before section

我不确定我的主标题标签和其他语义元素是否正确。

在开始 section 之前,我可以在 article 中使用 h1 标签而不需要额外的文字吗?

<main id="main" class="site-main">
 <article itemtype="http://schema.org/CreativeWork" itemscope="itemscope">
  <h1 itemprop="headline">Main Headline</h1>            
   <section itemprop="text">
     <h2>First Section Headline</h2>
     <p>Some text</p>
   </section>
   <section itemprop="text">
     <h2>Second Section Headline</h2>
     <p>Some text</p>
   </section>
   <section itemprop="text">
     <h2>Third Section Headline</h2>
     <p>Some text</p>
   </section>
</article>
</main>

<article> 是一个 self-contained 单元,通常带有标题元素,因此没有什么可以阻止您在标题和 nothing in the specification says otherwise 之后立即开始 <section>。在这种情况下,标题元素只不过是文章的标题。