is there any difference between using one of this technologies? I'm building now a site using HTML5, and I'm having hard time to decide which one of them to use. I cannot see any difference between them, else the syntax size, which i'm not quiet sure is an advantage for the microformats side.

link|improve this question

feedback

3 Answers

up vote 16 down vote accepted

Edit, August 2011: Times have changed. Forget my recommendation below. Just use microdata and forget that the other two exist.

Microformats: the oldest and the simplest of the three. If the existing specs cover your needs (that is, you want to mark up addresses, events, friend links, or another one of the supported data types), then they are a nice and practical choice. The problem is that you cannot make your own microformat if you want to mark up some kind of data that's not supported by the official specs.

RDFa: This one is based on W3C's RDF data model (it's basically a way of embedding RDF data into HTML pages). RDF has been around for a long time and there's a large amount of fancy tools for doing stuff with RDF data (stores, search engines, query languages, graph visualizers and so on). So RDFa takes you into this big existing ecosystem. But this also makes RDFa kind of complicated, and the learning curve is steeper than for the other proposals.

Microdata: This is Ian Hickson's counter-proposal to RDFa. In spirit, it is an extensible version of microformats. It doesn't have the RDF connection and is simpler than RDFa. It's still very new and hasn't seen much adoption yet, so it's a bit early to tell. Update: schema.org really seals the deal here.

My recommendation would be to go with microformats if they cover your need, and RDFa otherwise.

link|improve this answer
5  
At the end I have decided using Microdatas, especially cause the site I'm creating is an HTML5 one. Google likes it, and for me- that whats count. Do you guys know any other reason? – NeoSwf Jun 24 '10 at 18:57
1  
@Shlomi.A.: I would go for Microdata because of it being part of the HTML5 API set, I strongly believe they'll be the standard in the near future when HTML5 will be adopted more widely. – GarciaWebDev Mar 3 '11 at 5:08
Given that all the main players have agreed on Microdata (see schema.org), the updated recommendation is correct -- go with Microdata :) – TMC Jan 14 at 23:39
feedback

I would use Microdata given that Google, Microsoft and Yahoo have collaborated on Microdata and formalized the schemas at http://schema.org. There aren't many tools out there and some spec bugs they have (in particular with their examples), it's only a matter of time before it has more widespread adoption.

link|improve this answer
feedback

RDFa -> more resources (blank nodes, CURIE etc..)

Microformarts -> simply and popular, minor resources and no support to custom vocabularies

Microdata -> cool itemref resource, very very new...

link|improve this answer
Hey and thanks for your answer. I have replied above you. Cheers :) – NeoSwf Jun 24 '10 at 18:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.