representative-hcard-authoring: Difference between revisions

From Microformats Wiki
Jump to navigation Jump to search
(drafted)
 
m (Replace <entry-title> with {{DISPLAYTITLE:}})
 
(7 intermediate revisions by 3 users not shown)
Line 1: Line 1:
<h1>representative hCard authoring</h1>
{{DISPLAYTITLE:representative hCard authoring}}
 
{{latest|representative-h-card-authoring}}


To publish a [[representative hCard]] on a page, in addition to properly following [[hcard-authoring]] instructions, you need to do at least one of two of the following (you can do both).
To publish a [[representative hCard]] on a page, in addition to properly following [[hcard-authoring]] instructions, you need to do at least one of two of the following (you can do both).


# hyperlink to the page itself, perhaps around your icon or name (or both), and use both the "uid" and "url" class names in the class attribute on the hyperlink. e.g.: <pre><nowiki><span class="vcard">
1. hyperlink to the page itself, perhaps around your icon or name (or both), and use both the "uid" and "url" class names in the class attribute on the hyperlink. e.g.:  
<source lang=html4strict><span class="vcard">
  <a href="http://tantek.com/" class="url uid fn">Tantek Çelik</a>
  <a href="http://tantek.com/" class="url uid fn">Tantek Çelik</a>
</span></nowiki></pre>
</span></source>
# markup your links to other profiles with both <code>rel="me"</code> and the "url" class name. e.g.: <pre><nowiki><span class="vcard">
 
2. markup your links to other profiles with both <code>[[rel-me|rel="me"]]</code> and the "url" class name. e.g.:  
<source lang=html4strict><span class="vcard">
  <span class="fn">Tantek Çelik</span>  
  <span class="fn">Tantek Çelik</span>  
  (<a href="http://twitter.com/t" rel="me" class="url">my Twitter</a>)
  (<a href="http://twitter.com/t" rel="me" class="url">my Twitter</a>)
</span></nowiki></pre>
</span></source>


Or both:
Or better yet do both:


<pre><nowiki><span class="vcard">
<source lang=html4strict><span class="vcard">
  <a href="http://tantek.com/" class="url uid fn">Tantek Çelik</a>
  <a href="http://tantek.com/" class="url uid fn">Tantek Çelik</a>
  (<a href="http://twitter.com/t" rel="me" class="url">my Twitter</a>)
  (<a href="http://twitter.com/t" rel="me" class="url">my Twitter</a>)
</span></nowiki></pre>
</span></source>
 
which has the following advantages over either individual example above:
* a richer, more semantic hCard (e.g. providing two URLs for the person rather than just one)
* works with both hCard-only parsers/crawlers and XFN-only parsers/crawlers


== see also ==
== see also ==
* [[representative-hcard]]
{{representative-hcard-related-pages}}
* [[representative-hcard-authoring]]
* [[representative-hcard-parsing]]
* [[representative-hcard-examples]]
* [[representative-hcard-formats]]
* [[representative-hcard-brainstorming]]
* [[hcard]]
* [[hcard-authoring]]

Latest revision as of 16:32, 18 July 2020


See latest version: representative-h-card-authoring

To publish a representative hCard on a page, in addition to properly following hcard-authoring instructions, you need to do at least one of two of the following (you can do both).

1. hyperlink to the page itself, perhaps around your icon or name (or both), and use both the "uid" and "url" class names in the class attribute on the hyperlink. e.g.:

<span class="vcard">
 <a href="http://tantek.com/" class="url uid fn">Tantek Çelik</a>
</span>

2. markup your links to other profiles with both rel="me" and the "url" class name. e.g.:

<span class="vcard">
 <span class="fn">Tantek Çelik</span> 
 (<a href="http://twitter.com/t" rel="me" class="url">my Twitter</a>)
</span>

Or better yet do both:

<span class="vcard">
 <a href="http://tantek.com/" class="url uid fn">Tantek Çelik</a>
 (<a href="http://twitter.com/t" rel="me" class="url">my Twitter</a>)
</span>

which has the following advantages over either individual example above:

  • a richer, more semantic hCard (e.g. providing two URLs for the person rather than just one)
  • works with both hCard-only parsers/crawlers and XFN-only parsers/crawlers

see also