When structuring an article page with Microdata tags (schema.org/Article), is it possible to have multiple sections with itemprop="articleBody"
or is only one occurence allowed?
In my case I have an Article page that have both a Preamble and a Main body part, which are separated in different div:s with other content in between. So the easiest solution for me would be to have two itemprop="articleBody"
attributes, one for each part. Is that possible ?
<div itemprop="articleBody" class="article-preamble>
<p>Article preamble lorem ipsum...</p>
</div>
<div class="related-articles>
<!-- This div's content should not be a part of itemprop="articleBody" -->
<a href=#">Related article 1...</a>
</div>
<div itemprop="articleBody" class="article-body-text>
<p>Article main body text... lorem ipsum...</p>
</div>