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.

[1] https://github.com/thkoch2001/bachelor-thesis

link|improve this question

20% accept rate
1  
I think you are overengineering; microdata just means to tag your HTML elements in a specific way, and a library for that would need to be quite intimate with your template engine and your output objects. Also, check your accept rate. – Tassos Bassoukos Feb 17 at 17:44
This question is similar to stackoverflow.com/questions/7822377/using-java-to-write-rdfa – Thomas Koch Feb 20 at 12:32
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.