On Sep 22, 2007, at 12:32 PM, Stanimir Stamenkov wrote:

<address class="vcard">
  <span class="fn">John Doe</span><br>
E-mail: <a class="email" href="mailto:John%20Doe% [EMAIL PROTECTED]"><span class="value">[EMAIL PROTECTED]</span></a>
</address>

Shouldn't just the "value" be used as an e-mail address value this way?

See:

http://microformats.org/wiki/hcard-parsing#email_property

<a class="email"> takes the value from the href attribute as an exception from standard parsing rules. You probably want to do this instead:

<a href="mailto:[EMAIL PROTECTED]"><span class="email">[EMAIL PROTECTED]</span></a>

Peace,
Scott

_______________________________________________
microformats-discuss mailing list
microformats-discuss@microformats.org
http://microformats.org/mailman/listinfo/microformats-discuss

Reply via email to