[whatwg] adding microdata to basic links

Tantek asked:

>> Could you provide a complete RDFa example of what you're attempting to
>> accomplish?

St?phane replied:

> <p>
> This book has been authored by
>    <span vocab="http://schema.org/" typeof="Person">
>        <a property="name" rel="url" href="http://smith.org/john">John
> Smith</a>
>    </span>
> </p>

This could be represented in Microdata without an extra element:

<p itemscope>
This book has been authored by
    <span itemprop="name">
        <a itemprop="url" href="http://smith.org/john">John
Smith</a>
    </span>
</p>

Or in the hCard microformat with even less markup:

<p class="vcard">
    This book has been authored by <a class="fn url"
    href="http://smith.org/john">John Smith</a>
</p>



HTH,
Ted

Received on Wednesday, 24 August 2011 12:53:43 UTC