Microformats suck
I like the idea of microformats but as a visitor to a website they're not useful to me. Only until I dig into the source I see the microformat code. Is there a web browser which doesn't require a plugin that parses these microformats?
As a developer they create a mess and cause excessive namespaces. Take this example from wikipedia:
<div class="vcard">
<div class="fn">Joe Doe</div>
<div class="org">The Example Company</div>
<div class="tel">604-555-1234</div>
<a class="url" href="http://example.com/">http://example.com/</a>
</div>
Is this microformat expandable? If I have two phone numbers how do I identify which one is office, personal and mobile? Why do I have to use the class attribute - this is for style. Even if I changed them to use rel this is also bad.
I would use them when it has been implemented correctly.
HTML and XHTML was not designed for microformats. It's a misuse of HTML.
Tuesday, 17th February, 2009

Comments
Mathias
"Is this microformat expandable?"
yes
"If I have two phone numbers how do I identify which one is office, personal and mobile? "
how would you not know that about your own telephones?
"Why do I have to use the class attribute - this is for style."
not quite right. class is also "For general purpose processing by user agents."
"It's a misuse of HTML."
HTML is flawed.
haz@sofapause.ch
Tuesday, 25th October, 2011
Add A Comment