On 1/11/06, Mark Pilgrim <[EMAIL PROTECTED]> wrote: > Regardless of that issue (which is important, but separate from the > next issue)... let's say I had an Atom 1.0 category like this: > > <category term="tech" label="Technology" scheme="http://del.icio.us/tag/"/> > > How would I represent this with rel-tag? > > Option 1: <a href="http://del.icio.us/tag/tech" title="tech">Technology</a> > Option 2: <a href="http://del.icio.us/tag/tech" title="Technology">tech</a> > Option 3: something else I haven't considered
Nitpickery: you forgot the rel="tag" in your rel-tags. >From the rel-tag microformats page: The linked page SHOULD exist, and it is the linked page, rather than the link text, that defines the tag. The last path component of the URL is the text of the tag, so <a href="http://technorati.com/tag/tech" rel="tag">fish</a> would indicate the tag "tech" rather than "fish". Thus, you could do <a href="http://del.icio.us/tag/tech" rel="tag">Technology</a>. This would translate to atom: <category term="tech" label="Technology" scheme="http://del.icio.us/tag/"/> I believe. - David _______________________________________________ microformats-discuss mailing list [email protected] http://microformats.org/mailman/listinfo/microformats-discuss
