I'm using: Version: Mars.2 Release (4.5.2) for JSP / HTML5 development and currently receiving warnings on Microdata attributes such as:
Multiple annotations found at this line:
- Undefined attribute name (
itemtype).- Undefined attribute name (
itemscope).
I know the warnings can be disabled but I like them in place for other attributes. Is there a bug in Eclipse that prevents it from properly recognizing the Microdata?
Example:
<article class="col-sm-4">
<h4><i class="fa fa-envelope text-accent"></i> Mail</h4>
<address>
<span itemscope="" itemtype="http://schema.org/Organization">
<span itemprop="name">Customer Service</span><br>
<span itemprop="name">Company Name</span><br>
<span itemprop="address" itemscope="" itemtype="http://schema.org/PostalAddress">
<span itemprop="street-address">P.O. Box 555</span><br>
<span itemprop="addressLocality">Union</span>, <span itemprop="ddressRegion">NJ</span> <span itemprop="postalCode">07083</span><br>
</span>
</span>
</address>
</article>