is there a Java (Scala) library or template engine out there that supports me to produce valid Microdata-enriched HTML5 snippets. By support I mean things like:
- Guard me against typos
- Make sure I use correct terms from a vocabulary, e.g. schema.org
- Probably outputs complete HTML5 snippets from a given data structure (VCard->HTML5)?
Update I've written a bit more on this in my bachelor thesis[1] and copy it here now to ask if anybody has ever seen something like this or whether it would make sense.
The next listing is an example of manually adding the Microdata tags in a template engine (Scalate with Jade syntax):
-@ var vcard: VCard
div( itemscope itemtype="http://schema.org/Person"
itemid=#{vcard.getProperty("uid")} )
span( itemprop="name" )
#{vcard.getProperty("fn")}
span( itemprop="telephone" )
#{vcard.getProperty("tel")}
The next listing shows a template using a data structure that is aware of the used Microdata vocabulary and wraps an instance of a typed Microdata item with its properties:
-@ var md: MicroData
= md.scope
div
= md.prop("name")
span( style="color:red" )
= md.prop("telephone")
= md.prop("email")
The scope method of the Microdata interface will add the itemscope, itemtype and itemid attributes to the nested div element. The prop method either augments a nested element as shown for the name property or creates the correct nested element. The method adds the itemprop attribute and puts the value for this property inside the element.
An implementation of this approach must take care of a few peculiarities. Some properties don’t necessarily use simple span elements, e.g. dates can be better expressed with time elements or URI values most likely appear in an a,img,link or object element. Property values could also be put in a content attribute while the element’s nested text content is optimized for human consumption. Items can be nested, e.g. an item of type PostalAddress could be nested inside a Person item.
A template engine that should be extended as described above should allow to capture and manipulate nested HTML elements and to call methods of passed in objects.