Cheatsheet

From RDFaWiki

Jump to: navigation, search

Note: We're dealing with RDFa, here. Although I appreciate openess, I guess on a uF cheatsheet page you also will NOT find RDFa or so, right? Duck123, could you please remove all bits that are not directly related to the RDFa cheatsheet.

  • Marking up as both hCard and foaf
<address class="vcard" about="#tantek" instanceof="foaf:Person">
 <a class="fn url" href="http://tantek.com/" rel="foaf:homepage" property="foaf:name">Tantek Çelik</a>
</address>

This will create the triples:

<#tantek>
    a    foaf:Person ;
    foaf:name "Tantek Çelik" ;
    foaf:homepage <http://tantek.com/> .

and the vcard:

BEGIN:VCARD
VERSION:3.0
N:Çelik;Tantek
FN:Tantek Çelik
URL:http://tantek.com/
END:VCARD
Personal tools