I'm trying to apply rich snippet data to my web page, following http://schema.org/Article
standards. One of the properties is articleBody
, which I expect should include the entire body of text that comprises the article.
Unfortunately, the article's HTML representation is spotted with occasional buttons, ads and other hints, which has text that should not go into the articleBody
.
For example:
<div itemscope itemtype="http://schema.org/Article">
<div itemtype="articleBody">
<p>1st Paragraph</p>
<p>2nd paragraph</p>
<a>A few useful links for my users</a>
<p>3rd paragraph</p>
<div>A few text ads</div>
<p>4th paragraph</p>
</div>
</div>
Is there a way to exclude the texts in the ads/links from the article itself?