A simple way to mark up structural information in your HTML so software can parse it.
Let's start with a contact information example:
PayLease 9330 Scranton Rd #450 San Diego, CA 92121
PayLease
9330 Scranton Rd #450
San Diego,
CA
92121
h-card specification: http://microformats.org/wiki/h-card {
"items": [
{
"type": [
"h-card"
],
"properties": {
"org": [
"PayLease"
],
"street-address": [
"9330 Scranton Rd #450"
],
"locality": [
"San Diego"
],
"region": [
"CA"
],
"postal-code": [
"92121"
]
}
}
],
"rels": {},
"rel-urls": {}
}
An Introduction to Microformats
@ PayLease – San Diego, CA
I'll be giving a talk about microformats at...
h-event specification: http://microformats.org/wiki/h-event What could go wrong?