<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://microformats.org/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Andy+sky</id>
	<title>Microformats Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://microformats.org/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Andy+sky"/>
	<link rel="alternate" type="text/html" href="https://microformats.org/wiki/Special:Contributions/Andy_sky"/>
	<updated>2026-05-10T11:17:57Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.38.4</generator>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=h-event&amp;diff=65909</id>
		<title>h-event</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=h-event&amp;diff=65909"/>
		<updated>2017-02-22T09:17:35Z</updated>

		<summary type="html">&lt;p&gt;Andy sky: /* Properties */ format fix&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;h-event&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;h-event vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;p-name fn&amp;quot;&amp;gt;[[User:Tantek|Tantek Çelik]]&amp;lt;/span&amp;gt; (&amp;lt;span class=&amp;quot;p-role role&amp;quot;&amp;gt;Editor&amp;lt;/span&amp;gt;)&amp;lt;/span&amp;gt;&lt;br /&gt;
----&lt;br /&gt;
&amp;lt;dfn style=&amp;quot;font-style:normal;font-weight:bold&amp;quot;&amp;gt;h-event&amp;lt;/dfn&amp;gt; is a simple, open format for publishing events on the web. h-event is one of several open [[microformats|microformat]] draft standards suitable for embedding data in HTML/HTML5.&lt;br /&gt;
&lt;br /&gt;
h-event is the [[microformats2]] update to [[hCalendar]].&lt;br /&gt;
&lt;br /&gt;
{{cc0-owfa-license}}&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
Here is a simple event example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;h-event&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;h1 class=&amp;quot;p-name&amp;quot;&amp;gt;Microformats Meetup&amp;lt;/h1&amp;gt;&lt;br /&gt;
  &amp;lt;p&amp;gt;From &lt;br /&gt;
    &amp;lt;time class=&amp;quot;dt-start&amp;quot; datetime=&amp;quot;2013-06-30 12:00&amp;quot;&amp;gt;30&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; June 2013, 12:00&amp;lt;/time&amp;gt;&lt;br /&gt;
    to &amp;lt;time class=&amp;quot;dt-end&amp;quot; datetime=&amp;quot;2013-06-30 18:00&amp;quot;&amp;gt;18:00&amp;lt;/time&amp;gt;&lt;br /&gt;
    at &amp;lt;span class=&amp;quot;p-location&amp;quot;&amp;gt;Some bar in SF&amp;lt;/span&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
  &amp;lt;p class=&amp;quot;p-summary&amp;quot;&amp;gt;Get together and discuss all things microformats-related.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Parsed JSON:&lt;br /&gt;
&amp;lt;source lang=javascript&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
  &amp;quot;items&amp;quot;: [&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;type&amp;quot;: [&lt;br /&gt;
        &amp;quot;h-event&amp;quot;&lt;br /&gt;
      ],&lt;br /&gt;
      &amp;quot;properties&amp;quot;: {&lt;br /&gt;
        &amp;quot;name&amp;quot;: [&lt;br /&gt;
          &amp;quot;Microformats Meetup&amp;quot;&lt;br /&gt;
        ],&lt;br /&gt;
        &amp;quot;start&amp;quot;: [&lt;br /&gt;
          &amp;quot;2013-06-30 12:00:00&amp;quot;&lt;br /&gt;
        ],&lt;br /&gt;
        &amp;quot;end&amp;quot;: [&lt;br /&gt;
          &amp;quot;2013-06-30 18:00:00&amp;quot;&lt;br /&gt;
        ],&lt;br /&gt;
        &amp;quot;location&amp;quot;: [&lt;br /&gt;
          &amp;quot;Some bar in SF&amp;quot;&lt;br /&gt;
        ],&lt;br /&gt;
        &amp;quot;summary&amp;quot;: [&lt;br /&gt;
          &amp;quot;Get together and discuss all things microformats-related.&amp;quot;&lt;br /&gt;
        ]&lt;br /&gt;
      }&lt;br /&gt;
    }&lt;br /&gt;
  ]&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Get started ===&lt;br /&gt;
The class '''&amp;lt;code&amp;gt;h-event&amp;lt;/code&amp;gt;''' is a ''root class name'' that indicates the presence of an h-event.&lt;br /&gt;
&lt;br /&gt;
'''p-name''', '''dt-start''', '''dt-end''', '''p-location''', '''p-summary''', and the other h-event property class names listed below define ''properties'' of the h-event.&lt;br /&gt;
&lt;br /&gt;
See [[microformats2-parsing]] to learn more about property class names.&lt;br /&gt;
&lt;br /&gt;
== Properties ==&lt;br /&gt;
h-event properties, inside an element with class '''h-event''':&lt;br /&gt;
* '''&amp;lt;code&amp;gt;p-name&amp;lt;/code&amp;gt;''' - event name (or title)&lt;br /&gt;
* '''&amp;lt;code&amp;gt;p-summary&amp;lt;/code&amp;gt;''' - short summary of the event&lt;br /&gt;
* '''&amp;lt;code&amp;gt;dt-start&amp;lt;/code&amp;gt;''' - datetime the event starts&lt;br /&gt;
* '''&amp;lt;code&amp;gt;dt-end&amp;lt;/code&amp;gt;''' - datetime the event ends&lt;br /&gt;
* '''&amp;lt;code&amp;gt;dt-duration&amp;lt;/code&amp;gt;''' - duration of the event&lt;br /&gt;
* '''&amp;lt;code&amp;gt;p-description&amp;lt;/code&amp;gt;''' - more detailed description of the event&lt;br /&gt;
* '''&amp;lt;code&amp;gt;u-url&amp;lt;/code&amp;gt;''' - permalink for the event&lt;br /&gt;
* '''&amp;lt;code&amp;gt;p-category&amp;lt;/code&amp;gt;''' - event category(ies)/tag(s)&lt;br /&gt;
* '''&amp;lt;code&amp;gt;p-location&amp;lt;/code&amp;gt;''' - where the event takes place, optionally embedded [[h-card]], [[h-adr]], or [[h-geo]]&lt;br /&gt;
Experimental properties currently in use in the wild but not (yet) part of the official h-entry spec:&lt;br /&gt;
* '''&amp;lt;code&amp;gt;p-attendee&amp;lt;/code&amp;gt;''' - a person attending the event, optionally embed [[h-card]]&lt;br /&gt;
&amp;lt;div class=&amp;quot;discussion&amp;quot;&amp;gt;&lt;br /&gt;
* This draft has not been updated in almost 2 years. During this period, &amp;lt;code&amp;gt;h-entry&amp;lt;/code&amp;gt; &amp;lt;code&amp;gt;p-rsvp&amp;lt;/code&amp;gt; has been standardised, thus making it robust and mature enough for the addition. I guess it's about time to unlabel &amp;lt;code&amp;gt;p-attendee&amp;lt;/code&amp;gt; as experimental.&lt;br /&gt;
* I would also suggest to extend expected value to [[h-entry]], so that, while the personal info can be preserved, the attendee can also support p-rsvp property of h-entry.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
All properties are optional.&lt;br /&gt;
&lt;br /&gt;
== Status ==&lt;br /&gt;
'''h-event''' is a microformats.org draft specification. Public discussion on h-event takes place on [[h-event-feedback]] and the #microformats [[irc]] channel on irc.freenode.net.&lt;br /&gt;
&lt;br /&gt;
h-event is ready to use and implemented in the wild, but for backwards compatibility you should also mark h-events up as classic [[hCalendar]] events.&lt;br /&gt;
&lt;br /&gt;
== Property Details ==&lt;br /&gt;
(stub, to be expanded)&lt;br /&gt;
&lt;br /&gt;
=== p-location ===&lt;br /&gt;
&amp;lt;code&amp;gt;p-location&amp;lt;/code&amp;gt; is typically a physical address, optionally marked up with [[h-adr]], for example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;p class=&amp;quot;p-location h-adr&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;span class=&amp;quot;p-street-address&amp;quot;&amp;gt;17 Austerstræti&amp;lt;/span&amp;gt;&lt;br /&gt;
  &amp;lt;span class=&amp;quot;p-locality&amp;quot;&amp;gt;Reykjavík&amp;lt;/span&amp;gt;&lt;br /&gt;
  &amp;lt;span class=&amp;quot;p-country-name&amp;quot;&amp;gt;Iceland&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Reserved Properties ===&lt;br /&gt;
Reserved properties:&lt;br /&gt;
* '''&amp;lt;code&amp;gt;p-organizer&amp;lt;/code&amp;gt;''' - a person (co-)organizing the event, optionally embed [[h-card]] {{main|h-card}}&lt;br /&gt;
** proposed as way to [https://github.com/snarfed/bridgy/issues/275 implement copying an event organizer to Eventbrite]&lt;br /&gt;
&lt;br /&gt;
== Examples in the wild ==&lt;br /&gt;
Real world in the wild examples:&lt;br /&gt;
&lt;br /&gt;
* ... add uses of h-event you see in the wild here.&lt;br /&gt;
* [http://www.w3.org/conf/ W3Conf 2013] uses h-event for the main event, and h-card for all the speakers and notable attendees. The h-cards make particularly good use of implied name, url, and photo properties.&lt;br /&gt;
* [http://tantek.com/ Tantek Çelik] uses h-event on his home page&lt;br /&gt;
* [http://tantek.com/presentations/2012/06/microformats microformats.org at 7 years] presentation with h-event&lt;br /&gt;
* [http://tantek.com/presentations/2012/06/pdf2012-indieweb.html Rise of the Indie Web hCards] (from Personal Democracy Forum 2012 #pdf12 #pdf2012) has [[microformats2]] h-event and h-card markup&lt;br /&gt;
* WebMaker by Mozilla has h-event and h-card on event search (e.g. [https://webmaker.org/en-US/events/near/?lat=45.5234515&amp;amp;lng=-122.6762071 search near Portland Oregon]) and event pages (e.g. [https://webmaker.org/en-US/events/192f56eb9/ IndieWebCamp 2012]).[https://twitter.com/microformats/status/212207925643587585]&lt;br /&gt;
* [http://indiewebcamp.com IndieWebCamp] has [[microformats2]] h-event markup with embedded h-cards for the organizers and the location.&lt;br /&gt;
* [https://wiki.mozilla.org/Events Mozilla Events] page has [[microformats2]] h-event markup with attendees marked up with h-card.&lt;br /&gt;
&lt;br /&gt;
See [[microformats2#Examples_in_the_wild|microformats2 examples in the wild]] for more&lt;br /&gt;
&lt;br /&gt;
== Validating ==&lt;br /&gt;
{{h-spec-section-validating}}&lt;br /&gt;
&lt;br /&gt;
== Backward Compatibility ==&lt;br /&gt;
=== Publisher Compatibility ===&lt;br /&gt;
For backward compatibility, you may wish to use classic [[hCalendar]] classnames in addition to the more future-proof h-event properties, for example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;h-event vevent&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;h1 class=&amp;quot;p-name summary&amp;quot;&amp;gt;Some great event&amp;lt;/h1&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Parser Compatibility ===&lt;br /&gt;
Microformats parsers {{should}} detect classic properties only if a classic root class name is found and parse them as microformats2 properties. &lt;br /&gt;
&lt;br /&gt;
If an &amp;quot;h-event&amp;quot; is found, don't look for a &amp;quot;vevent&amp;quot; on the same element.&lt;br /&gt;
&lt;br /&gt;
Compat root class name: &amp;lt;code id=&amp;quot;vevent&amp;quot;&amp;gt;vevent&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Properties: (parsed as '''p-''' plain text unless otherwise specified)&lt;br /&gt;
* &amp;lt;code&amp;gt;summary&amp;lt;/code&amp;gt; - parse as '''&amp;lt;code&amp;gt;p-name&amp;lt;/code&amp;gt;'''&lt;br /&gt;
* &amp;lt;code&amp;gt;dtstart&amp;lt;/code&amp;gt; - parse as '''&amp;lt;code&amp;gt;dt-start&amp;lt;/code&amp;gt;'''&lt;br /&gt;
* &amp;lt;code&amp;gt;dtend&amp;lt;/code&amp;gt; - parse as '''&amp;lt;code&amp;gt;dt-end&amp;lt;/code&amp;gt;'''&lt;br /&gt;
* &amp;lt;code&amp;gt;duration&amp;lt;/code&amp;gt; - parse as '''&amp;lt;code&amp;gt;dt-duration&amp;lt;/code&amp;gt;'''&lt;br /&gt;
* &amp;lt;code&amp;gt;description&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;url&amp;lt;/code&amp;gt; - parse as '''u-'''&lt;br /&gt;
* &amp;lt;code&amp;gt;category&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;location&amp;lt;/code&amp;gt; - including compat root &amp;lt;code&amp;gt;vcard&amp;lt;/code&amp;gt; in the absence of &amp;lt;code&amp;gt;h-card&amp;lt;/code&amp;gt;, and compat root &amp;lt;code&amp;gt;adr&amp;lt;/code&amp;gt; in the absence of &amp;lt;code&amp;gt;h-adr&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;geo&amp;lt;/code&amp;gt; - parse as '''&amp;lt;code&amp;gt;p-location h-geo&amp;lt;/code&amp;gt;''' including compat root &amp;lt;code&amp;gt;geo&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== iCalendar Compatibility ===&lt;br /&gt;
hCalendar-specific implementations that perform custom display or translation to iCalendar .ics {{should}} prefer &amp;lt;code&amp;gt;p-name&amp;lt;/code&amp;gt; over &amp;lt;code&amp;gt;p-summary&amp;lt;/code&amp;gt;, and use &amp;lt;code&amp;gt;p-summary&amp;lt;/code&amp;gt; value(s) as a fallback if there is no &amp;lt;code&amp;gt;p-name&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
== Background ==&lt;br /&gt;
This work is based on the existing [[hCalendar]] and [[iCalendar]] specifications.&lt;br /&gt;
&lt;br /&gt;
== Design Principles ==&lt;br /&gt;
(stub, expand)&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
* [[h-calendar-to-do]]&lt;br /&gt;
* [[microformats2]]&lt;br /&gt;
* [[microformats2-parsing]]&lt;br /&gt;
* [[h-adr]]&lt;br /&gt;
* [[h-geo]]&lt;br /&gt;
* [[h-card]]&lt;br /&gt;
* [[hCalendar]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Draft Specifications]]&lt;/div&gt;</summary>
		<author><name>Andy sky</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=h-event&amp;diff=65908</id>
		<title>h-event</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=h-event&amp;diff=65908"/>
		<updated>2017-02-22T09:17:12Z</updated>

		<summary type="html">&lt;p&gt;Andy sky: /* Properties */ extend p-attendee to h-entry&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;h-event&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;h-event vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;p-name fn&amp;quot;&amp;gt;[[User:Tantek|Tantek Çelik]]&amp;lt;/span&amp;gt; (&amp;lt;span class=&amp;quot;p-role role&amp;quot;&amp;gt;Editor&amp;lt;/span&amp;gt;)&amp;lt;/span&amp;gt;&lt;br /&gt;
----&lt;br /&gt;
&amp;lt;dfn style=&amp;quot;font-style:normal;font-weight:bold&amp;quot;&amp;gt;h-event&amp;lt;/dfn&amp;gt; is a simple, open format for publishing events on the web. h-event is one of several open [[microformats|microformat]] draft standards suitable for embedding data in HTML/HTML5.&lt;br /&gt;
&lt;br /&gt;
h-event is the [[microformats2]] update to [[hCalendar]].&lt;br /&gt;
&lt;br /&gt;
{{cc0-owfa-license}}&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
Here is a simple event example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;h-event&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;h1 class=&amp;quot;p-name&amp;quot;&amp;gt;Microformats Meetup&amp;lt;/h1&amp;gt;&lt;br /&gt;
  &amp;lt;p&amp;gt;From &lt;br /&gt;
    &amp;lt;time class=&amp;quot;dt-start&amp;quot; datetime=&amp;quot;2013-06-30 12:00&amp;quot;&amp;gt;30&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; June 2013, 12:00&amp;lt;/time&amp;gt;&lt;br /&gt;
    to &amp;lt;time class=&amp;quot;dt-end&amp;quot; datetime=&amp;quot;2013-06-30 18:00&amp;quot;&amp;gt;18:00&amp;lt;/time&amp;gt;&lt;br /&gt;
    at &amp;lt;span class=&amp;quot;p-location&amp;quot;&amp;gt;Some bar in SF&amp;lt;/span&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
  &amp;lt;p class=&amp;quot;p-summary&amp;quot;&amp;gt;Get together and discuss all things microformats-related.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Parsed JSON:&lt;br /&gt;
&amp;lt;source lang=javascript&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
  &amp;quot;items&amp;quot;: [&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;type&amp;quot;: [&lt;br /&gt;
        &amp;quot;h-event&amp;quot;&lt;br /&gt;
      ],&lt;br /&gt;
      &amp;quot;properties&amp;quot;: {&lt;br /&gt;
        &amp;quot;name&amp;quot;: [&lt;br /&gt;
          &amp;quot;Microformats Meetup&amp;quot;&lt;br /&gt;
        ],&lt;br /&gt;
        &amp;quot;start&amp;quot;: [&lt;br /&gt;
          &amp;quot;2013-06-30 12:00:00&amp;quot;&lt;br /&gt;
        ],&lt;br /&gt;
        &amp;quot;end&amp;quot;: [&lt;br /&gt;
          &amp;quot;2013-06-30 18:00:00&amp;quot;&lt;br /&gt;
        ],&lt;br /&gt;
        &amp;quot;location&amp;quot;: [&lt;br /&gt;
          &amp;quot;Some bar in SF&amp;quot;&lt;br /&gt;
        ],&lt;br /&gt;
        &amp;quot;summary&amp;quot;: [&lt;br /&gt;
          &amp;quot;Get together and discuss all things microformats-related.&amp;quot;&lt;br /&gt;
        ]&lt;br /&gt;
      }&lt;br /&gt;
    }&lt;br /&gt;
  ]&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Get started ===&lt;br /&gt;
The class '''&amp;lt;code&amp;gt;h-event&amp;lt;/code&amp;gt;''' is a ''root class name'' that indicates the presence of an h-event.&lt;br /&gt;
&lt;br /&gt;
'''p-name''', '''dt-start''', '''dt-end''', '''p-location''', '''p-summary''', and the other h-event property class names listed below define ''properties'' of the h-event.&lt;br /&gt;
&lt;br /&gt;
See [[microformats2-parsing]] to learn more about property class names.&lt;br /&gt;
&lt;br /&gt;
== Properties ==&lt;br /&gt;
h-event properties, inside an element with class '''h-event''':&lt;br /&gt;
* '''&amp;lt;code&amp;gt;p-name&amp;lt;/code&amp;gt;''' - event name (or title)&lt;br /&gt;
* '''&amp;lt;code&amp;gt;p-summary&amp;lt;/code&amp;gt;''' - short summary of the event&lt;br /&gt;
* '''&amp;lt;code&amp;gt;dt-start&amp;lt;/code&amp;gt;''' - datetime the event starts&lt;br /&gt;
* '''&amp;lt;code&amp;gt;dt-end&amp;lt;/code&amp;gt;''' - datetime the event ends&lt;br /&gt;
* '''&amp;lt;code&amp;gt;dt-duration&amp;lt;/code&amp;gt;''' - duration of the event&lt;br /&gt;
* '''&amp;lt;code&amp;gt;p-description&amp;lt;/code&amp;gt;''' - more detailed description of the event&lt;br /&gt;
* '''&amp;lt;code&amp;gt;u-url&amp;lt;/code&amp;gt;''' - permalink for the event&lt;br /&gt;
* '''&amp;lt;code&amp;gt;p-category&amp;lt;/code&amp;gt;''' - event category(ies)/tag(s)&lt;br /&gt;
* '''&amp;lt;code&amp;gt;p-location&amp;lt;/code&amp;gt;''' - where the event takes place, optionally embedded [[h-card]], [[h-adr]], or [[h-geo]]&lt;br /&gt;
Experimental properties currently in use in the wild but not (yet) part of the official h-entry spec:&lt;br /&gt;
* '''&amp;lt;code&amp;gt;p-attendee&amp;lt;/code&amp;gt;''' - a person attending the event, optionally embed [[h-card]]&lt;br /&gt;
&amp;lt;div class=&amp;quot;discussion&amp;quot;&amp;gt;&lt;br /&gt;
* This draft has not been updated in almost 2 years. During this period, &amp;lt;code&amp;gt;h-entry&amp;lt;/code&amp;gt; &amp;lt;code&amp;gt;p-rsvp&amp;lt;/code&amp;gt; has been standardised, thus making it robust and mature enough for the addition. I guess it's about time to unlabel &amp;lt;code&amp;gt;p-attendee&amp;lt;/code&amp;gt; as experimental.&lt;br /&gt;
I would also suggest to extend expected value to [[h-entry]], so that, while the personal info can be preserved, the attendee can also support p-rsvp property of h-entry.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
All properties are optional.&lt;br /&gt;
&lt;br /&gt;
== Status ==&lt;br /&gt;
'''h-event''' is a microformats.org draft specification. Public discussion on h-event takes place on [[h-event-feedback]] and the #microformats [[irc]] channel on irc.freenode.net.&lt;br /&gt;
&lt;br /&gt;
h-event is ready to use and implemented in the wild, but for backwards compatibility you should also mark h-events up as classic [[hCalendar]] events.&lt;br /&gt;
&lt;br /&gt;
== Property Details ==&lt;br /&gt;
(stub, to be expanded)&lt;br /&gt;
&lt;br /&gt;
=== p-location ===&lt;br /&gt;
&amp;lt;code&amp;gt;p-location&amp;lt;/code&amp;gt; is typically a physical address, optionally marked up with [[h-adr]], for example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;p class=&amp;quot;p-location h-adr&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;span class=&amp;quot;p-street-address&amp;quot;&amp;gt;17 Austerstræti&amp;lt;/span&amp;gt;&lt;br /&gt;
  &amp;lt;span class=&amp;quot;p-locality&amp;quot;&amp;gt;Reykjavík&amp;lt;/span&amp;gt;&lt;br /&gt;
  &amp;lt;span class=&amp;quot;p-country-name&amp;quot;&amp;gt;Iceland&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Reserved Properties ===&lt;br /&gt;
Reserved properties:&lt;br /&gt;
* '''&amp;lt;code&amp;gt;p-organizer&amp;lt;/code&amp;gt;''' - a person (co-)organizing the event, optionally embed [[h-card]] {{main|h-card}}&lt;br /&gt;
** proposed as way to [https://github.com/snarfed/bridgy/issues/275 implement copying an event organizer to Eventbrite]&lt;br /&gt;
&lt;br /&gt;
== Examples in the wild ==&lt;br /&gt;
Real world in the wild examples:&lt;br /&gt;
&lt;br /&gt;
* ... add uses of h-event you see in the wild here.&lt;br /&gt;
* [http://www.w3.org/conf/ W3Conf 2013] uses h-event for the main event, and h-card for all the speakers and notable attendees. The h-cards make particularly good use of implied name, url, and photo properties.&lt;br /&gt;
* [http://tantek.com/ Tantek Çelik] uses h-event on his home page&lt;br /&gt;
* [http://tantek.com/presentations/2012/06/microformats microformats.org at 7 years] presentation with h-event&lt;br /&gt;
* [http://tantek.com/presentations/2012/06/pdf2012-indieweb.html Rise of the Indie Web hCards] (from Personal Democracy Forum 2012 #pdf12 #pdf2012) has [[microformats2]] h-event and h-card markup&lt;br /&gt;
* WebMaker by Mozilla has h-event and h-card on event search (e.g. [https://webmaker.org/en-US/events/near/?lat=45.5234515&amp;amp;lng=-122.6762071 search near Portland Oregon]) and event pages (e.g. [https://webmaker.org/en-US/events/192f56eb9/ IndieWebCamp 2012]).[https://twitter.com/microformats/status/212207925643587585]&lt;br /&gt;
* [http://indiewebcamp.com IndieWebCamp] has [[microformats2]] h-event markup with embedded h-cards for the organizers and the location.&lt;br /&gt;
* [https://wiki.mozilla.org/Events Mozilla Events] page has [[microformats2]] h-event markup with attendees marked up with h-card.&lt;br /&gt;
&lt;br /&gt;
See [[microformats2#Examples_in_the_wild|microformats2 examples in the wild]] for more&lt;br /&gt;
&lt;br /&gt;
== Validating ==&lt;br /&gt;
{{h-spec-section-validating}}&lt;br /&gt;
&lt;br /&gt;
== Backward Compatibility ==&lt;br /&gt;
=== Publisher Compatibility ===&lt;br /&gt;
For backward compatibility, you may wish to use classic [[hCalendar]] classnames in addition to the more future-proof h-event properties, for example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;h-event vevent&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;h1 class=&amp;quot;p-name summary&amp;quot;&amp;gt;Some great event&amp;lt;/h1&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Parser Compatibility ===&lt;br /&gt;
Microformats parsers {{should}} detect classic properties only if a classic root class name is found and parse them as microformats2 properties. &lt;br /&gt;
&lt;br /&gt;
If an &amp;quot;h-event&amp;quot; is found, don't look for a &amp;quot;vevent&amp;quot; on the same element.&lt;br /&gt;
&lt;br /&gt;
Compat root class name: &amp;lt;code id=&amp;quot;vevent&amp;quot;&amp;gt;vevent&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Properties: (parsed as '''p-''' plain text unless otherwise specified)&lt;br /&gt;
* &amp;lt;code&amp;gt;summary&amp;lt;/code&amp;gt; - parse as '''&amp;lt;code&amp;gt;p-name&amp;lt;/code&amp;gt;'''&lt;br /&gt;
* &amp;lt;code&amp;gt;dtstart&amp;lt;/code&amp;gt; - parse as '''&amp;lt;code&amp;gt;dt-start&amp;lt;/code&amp;gt;'''&lt;br /&gt;
* &amp;lt;code&amp;gt;dtend&amp;lt;/code&amp;gt; - parse as '''&amp;lt;code&amp;gt;dt-end&amp;lt;/code&amp;gt;'''&lt;br /&gt;
* &amp;lt;code&amp;gt;duration&amp;lt;/code&amp;gt; - parse as '''&amp;lt;code&amp;gt;dt-duration&amp;lt;/code&amp;gt;'''&lt;br /&gt;
* &amp;lt;code&amp;gt;description&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;url&amp;lt;/code&amp;gt; - parse as '''u-'''&lt;br /&gt;
* &amp;lt;code&amp;gt;category&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;location&amp;lt;/code&amp;gt; - including compat root &amp;lt;code&amp;gt;vcard&amp;lt;/code&amp;gt; in the absence of &amp;lt;code&amp;gt;h-card&amp;lt;/code&amp;gt;, and compat root &amp;lt;code&amp;gt;adr&amp;lt;/code&amp;gt; in the absence of &amp;lt;code&amp;gt;h-adr&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;geo&amp;lt;/code&amp;gt; - parse as '''&amp;lt;code&amp;gt;p-location h-geo&amp;lt;/code&amp;gt;''' including compat root &amp;lt;code&amp;gt;geo&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== iCalendar Compatibility ===&lt;br /&gt;
hCalendar-specific implementations that perform custom display or translation to iCalendar .ics {{should}} prefer &amp;lt;code&amp;gt;p-name&amp;lt;/code&amp;gt; over &amp;lt;code&amp;gt;p-summary&amp;lt;/code&amp;gt;, and use &amp;lt;code&amp;gt;p-summary&amp;lt;/code&amp;gt; value(s) as a fallback if there is no &amp;lt;code&amp;gt;p-name&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
== Background ==&lt;br /&gt;
This work is based on the existing [[hCalendar]] and [[iCalendar]] specifications.&lt;br /&gt;
&lt;br /&gt;
== Design Principles ==&lt;br /&gt;
(stub, expand)&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
* [[h-calendar-to-do]]&lt;br /&gt;
* [[microformats2]]&lt;br /&gt;
* [[microformats2-parsing]]&lt;br /&gt;
* [[h-adr]]&lt;br /&gt;
* [[h-geo]]&lt;br /&gt;
* [[h-card]]&lt;br /&gt;
* [[hCalendar]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Draft Specifications]]&lt;/div&gt;</summary>
		<author><name>Andy sky</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=h-event&amp;diff=65907</id>
		<title>h-event</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=h-event&amp;diff=65907"/>
		<updated>2017-02-21T13:29:00Z</updated>

		<summary type="html">&lt;p&gt;Andy sky: /* Properties */ p-attendee&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;h-event&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;h-event vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;p-name fn&amp;quot;&amp;gt;[[User:Tantek|Tantek Çelik]]&amp;lt;/span&amp;gt; (&amp;lt;span class=&amp;quot;p-role role&amp;quot;&amp;gt;Editor&amp;lt;/span&amp;gt;)&amp;lt;/span&amp;gt;&lt;br /&gt;
----&lt;br /&gt;
&amp;lt;dfn style=&amp;quot;font-style:normal;font-weight:bold&amp;quot;&amp;gt;h-event&amp;lt;/dfn&amp;gt; is a simple, open format for publishing events on the web. h-event is one of several open [[microformats|microformat]] draft standards suitable for embedding data in HTML/HTML5.&lt;br /&gt;
&lt;br /&gt;
h-event is the [[microformats2]] update to [[hCalendar]].&lt;br /&gt;
&lt;br /&gt;
{{cc0-owfa-license}}&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
Here is a simple event example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;h-event&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;h1 class=&amp;quot;p-name&amp;quot;&amp;gt;Microformats Meetup&amp;lt;/h1&amp;gt;&lt;br /&gt;
  &amp;lt;p&amp;gt;From &lt;br /&gt;
    &amp;lt;time class=&amp;quot;dt-start&amp;quot; datetime=&amp;quot;2013-06-30 12:00&amp;quot;&amp;gt;30&amp;lt;sup&amp;gt;th&amp;lt;/sup&amp;gt; June 2013, 12:00&amp;lt;/time&amp;gt;&lt;br /&gt;
    to &amp;lt;time class=&amp;quot;dt-end&amp;quot; datetime=&amp;quot;2013-06-30 18:00&amp;quot;&amp;gt;18:00&amp;lt;/time&amp;gt;&lt;br /&gt;
    at &amp;lt;span class=&amp;quot;p-location&amp;quot;&amp;gt;Some bar in SF&amp;lt;/span&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
  &amp;lt;p class=&amp;quot;p-summary&amp;quot;&amp;gt;Get together and discuss all things microformats-related.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Parsed JSON:&lt;br /&gt;
&amp;lt;source lang=javascript&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
  &amp;quot;items&amp;quot;: [&lt;br /&gt;
    {&lt;br /&gt;
      &amp;quot;type&amp;quot;: [&lt;br /&gt;
        &amp;quot;h-event&amp;quot;&lt;br /&gt;
      ],&lt;br /&gt;
      &amp;quot;properties&amp;quot;: {&lt;br /&gt;
        &amp;quot;name&amp;quot;: [&lt;br /&gt;
          &amp;quot;Microformats Meetup&amp;quot;&lt;br /&gt;
        ],&lt;br /&gt;
        &amp;quot;start&amp;quot;: [&lt;br /&gt;
          &amp;quot;2013-06-30 12:00:00&amp;quot;&lt;br /&gt;
        ],&lt;br /&gt;
        &amp;quot;end&amp;quot;: [&lt;br /&gt;
          &amp;quot;2013-06-30 18:00:00&amp;quot;&lt;br /&gt;
        ],&lt;br /&gt;
        &amp;quot;location&amp;quot;: [&lt;br /&gt;
          &amp;quot;Some bar in SF&amp;quot;&lt;br /&gt;
        ],&lt;br /&gt;
        &amp;quot;summary&amp;quot;: [&lt;br /&gt;
          &amp;quot;Get together and discuss all things microformats-related.&amp;quot;&lt;br /&gt;
        ]&lt;br /&gt;
      }&lt;br /&gt;
    }&lt;br /&gt;
  ]&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Get started ===&lt;br /&gt;
The class '''&amp;lt;code&amp;gt;h-event&amp;lt;/code&amp;gt;''' is a ''root class name'' that indicates the presence of an h-event.&lt;br /&gt;
&lt;br /&gt;
'''p-name''', '''dt-start''', '''dt-end''', '''p-location''', '''p-summary''', and the other h-event property class names listed below define ''properties'' of the h-event.&lt;br /&gt;
&lt;br /&gt;
See [[microformats2-parsing]] to learn more about property class names.&lt;br /&gt;
&lt;br /&gt;
== Properties ==&lt;br /&gt;
h-event properties, inside an element with class '''h-event''':&lt;br /&gt;
* '''&amp;lt;code&amp;gt;p-name&amp;lt;/code&amp;gt;''' - event name (or title)&lt;br /&gt;
* '''&amp;lt;code&amp;gt;p-summary&amp;lt;/code&amp;gt;''' - short summary of the event&lt;br /&gt;
* '''&amp;lt;code&amp;gt;dt-start&amp;lt;/code&amp;gt;''' - datetime the event starts&lt;br /&gt;
* '''&amp;lt;code&amp;gt;dt-end&amp;lt;/code&amp;gt;''' - datetime the event ends&lt;br /&gt;
* '''&amp;lt;code&amp;gt;dt-duration&amp;lt;/code&amp;gt;''' - duration of the event&lt;br /&gt;
* '''&amp;lt;code&amp;gt;p-description&amp;lt;/code&amp;gt;''' - more detailed description of the event&lt;br /&gt;
* '''&amp;lt;code&amp;gt;u-url&amp;lt;/code&amp;gt;''' - permalink for the event&lt;br /&gt;
* '''&amp;lt;code&amp;gt;p-category&amp;lt;/code&amp;gt;''' - event category(ies)/tag(s)&lt;br /&gt;
* '''&amp;lt;code&amp;gt;p-location&amp;lt;/code&amp;gt;''' - where the event takes place, optionally embedded [[h-card]], [[h-adr]], or [[h-geo]]&lt;br /&gt;
Experimental properties currently in use in the wild but not (yet) part of the official h-entry spec:&lt;br /&gt;
* '''&amp;lt;code&amp;gt;p-attendee&amp;lt;/code&amp;gt;''' - a person attending the event, optionally embed [[h-card]]&lt;br /&gt;
&amp;lt;div class=&amp;quot;discussion&amp;quot;&amp;gt;&lt;br /&gt;
* This draft has not been updated in almost 2 years. During this period other sites have referenced the &amp;lt;code&amp;gt;p-attendee&amp;lt;/code&amp;gt; property (e.g. [https://indieweb.org/event IndieWebCamp event]). In addition to this, &amp;lt;code&amp;gt;h-entry&amp;lt;/code&amp;gt; &amp;lt;code&amp;gt;p-rsvp&amp;lt;/code&amp;gt; has been standardised, thus making it robust and mature enough for the addition. I guess it's about time to unlabel &amp;lt;code&amp;gt;p-attendee&amp;lt;/code&amp;gt; as experimental.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
All properties are optional.&lt;br /&gt;
&lt;br /&gt;
== Status ==&lt;br /&gt;
'''h-event''' is a microformats.org draft specification. Public discussion on h-event takes place on [[h-event-feedback]] and the #microformats [[irc]] channel on irc.freenode.net.&lt;br /&gt;
&lt;br /&gt;
h-event is ready to use and implemented in the wild, but for backwards compatibility you should also mark h-events up as classic [[hCalendar]] events.&lt;br /&gt;
&lt;br /&gt;
== Property Details ==&lt;br /&gt;
(stub, to be expanded)&lt;br /&gt;
&lt;br /&gt;
=== p-location ===&lt;br /&gt;
&amp;lt;code&amp;gt;p-location&amp;lt;/code&amp;gt; is typically a physical address, optionally marked up with [[h-adr]], for example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;p class=&amp;quot;p-location h-adr&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;span class=&amp;quot;p-street-address&amp;quot;&amp;gt;17 Austerstræti&amp;lt;/span&amp;gt;&lt;br /&gt;
  &amp;lt;span class=&amp;quot;p-locality&amp;quot;&amp;gt;Reykjavík&amp;lt;/span&amp;gt;&lt;br /&gt;
  &amp;lt;span class=&amp;quot;p-country-name&amp;quot;&amp;gt;Iceland&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Reserved Properties ===&lt;br /&gt;
Reserved properties:&lt;br /&gt;
* '''&amp;lt;code&amp;gt;p-organizer&amp;lt;/code&amp;gt;''' - a person (co-)organizing the event, optionally embed [[h-card]] {{main|h-card}}&lt;br /&gt;
** proposed as way to [https://github.com/snarfed/bridgy/issues/275 implement copying an event organizer to Eventbrite]&lt;br /&gt;
&lt;br /&gt;
== Examples in the wild ==&lt;br /&gt;
Real world in the wild examples:&lt;br /&gt;
&lt;br /&gt;
* ... add uses of h-event you see in the wild here.&lt;br /&gt;
* [http://www.w3.org/conf/ W3Conf 2013] uses h-event for the main event, and h-card for all the speakers and notable attendees. The h-cards make particularly good use of implied name, url, and photo properties.&lt;br /&gt;
* [http://tantek.com/ Tantek Çelik] uses h-event on his home page&lt;br /&gt;
* [http://tantek.com/presentations/2012/06/microformats microformats.org at 7 years] presentation with h-event&lt;br /&gt;
* [http://tantek.com/presentations/2012/06/pdf2012-indieweb.html Rise of the Indie Web hCards] (from Personal Democracy Forum 2012 #pdf12 #pdf2012) has [[microformats2]] h-event and h-card markup&lt;br /&gt;
* WebMaker by Mozilla has h-event and h-card on event search (e.g. [https://webmaker.org/en-US/events/near/?lat=45.5234515&amp;amp;lng=-122.6762071 search near Portland Oregon]) and event pages (e.g. [https://webmaker.org/en-US/events/192f56eb9/ IndieWebCamp 2012]).[https://twitter.com/microformats/status/212207925643587585]&lt;br /&gt;
* [http://indiewebcamp.com IndieWebCamp] has [[microformats2]] h-event markup with embedded h-cards for the organizers and the location.&lt;br /&gt;
* [https://wiki.mozilla.org/Events Mozilla Events] page has [[microformats2]] h-event markup with attendees marked up with h-card.&lt;br /&gt;
&lt;br /&gt;
See [[microformats2#Examples_in_the_wild|microformats2 examples in the wild]] for more&lt;br /&gt;
&lt;br /&gt;
== Validating ==&lt;br /&gt;
{{h-spec-section-validating}}&lt;br /&gt;
&lt;br /&gt;
== Backward Compatibility ==&lt;br /&gt;
=== Publisher Compatibility ===&lt;br /&gt;
For backward compatibility, you may wish to use classic [[hCalendar]] classnames in addition to the more future-proof h-event properties, for example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;h-event vevent&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;h1 class=&amp;quot;p-name summary&amp;quot;&amp;gt;Some great event&amp;lt;/h1&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Parser Compatibility ===&lt;br /&gt;
Microformats parsers {{should}} detect classic properties only if a classic root class name is found and parse them as microformats2 properties. &lt;br /&gt;
&lt;br /&gt;
If an &amp;quot;h-event&amp;quot; is found, don't look for a &amp;quot;vevent&amp;quot; on the same element.&lt;br /&gt;
&lt;br /&gt;
Compat root class name: &amp;lt;code id=&amp;quot;vevent&amp;quot;&amp;gt;vevent&amp;lt;/code&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Properties: (parsed as '''p-''' plain text unless otherwise specified)&lt;br /&gt;
* &amp;lt;code&amp;gt;summary&amp;lt;/code&amp;gt; - parse as '''&amp;lt;code&amp;gt;p-name&amp;lt;/code&amp;gt;'''&lt;br /&gt;
* &amp;lt;code&amp;gt;dtstart&amp;lt;/code&amp;gt; - parse as '''&amp;lt;code&amp;gt;dt-start&amp;lt;/code&amp;gt;'''&lt;br /&gt;
* &amp;lt;code&amp;gt;dtend&amp;lt;/code&amp;gt; - parse as '''&amp;lt;code&amp;gt;dt-end&amp;lt;/code&amp;gt;'''&lt;br /&gt;
* &amp;lt;code&amp;gt;duration&amp;lt;/code&amp;gt; - parse as '''&amp;lt;code&amp;gt;dt-duration&amp;lt;/code&amp;gt;'''&lt;br /&gt;
* &amp;lt;code&amp;gt;description&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;url&amp;lt;/code&amp;gt; - parse as '''u-'''&lt;br /&gt;
* &amp;lt;code&amp;gt;category&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;location&amp;lt;/code&amp;gt; - including compat root &amp;lt;code&amp;gt;vcard&amp;lt;/code&amp;gt; in the absence of &amp;lt;code&amp;gt;h-card&amp;lt;/code&amp;gt;, and compat root &amp;lt;code&amp;gt;adr&amp;lt;/code&amp;gt; in the absence of &amp;lt;code&amp;gt;h-adr&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;geo&amp;lt;/code&amp;gt; - parse as '''&amp;lt;code&amp;gt;p-location h-geo&amp;lt;/code&amp;gt;''' including compat root &amp;lt;code&amp;gt;geo&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== iCalendar Compatibility ===&lt;br /&gt;
hCalendar-specific implementations that perform custom display or translation to iCalendar .ics {{should}} prefer &amp;lt;code&amp;gt;p-name&amp;lt;/code&amp;gt; over &amp;lt;code&amp;gt;p-summary&amp;lt;/code&amp;gt;, and use &amp;lt;code&amp;gt;p-summary&amp;lt;/code&amp;gt; value(s) as a fallback if there is no &amp;lt;code&amp;gt;p-name&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
== Background ==&lt;br /&gt;
This work is based on the existing [[hCalendar]] and [[iCalendar]] specifications.&lt;br /&gt;
&lt;br /&gt;
== Design Principles ==&lt;br /&gt;
(stub, expand)&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
* [[h-calendar-to-do]]&lt;br /&gt;
* [[microformats2]]&lt;br /&gt;
* [[microformats2-parsing]]&lt;br /&gt;
* [[h-adr]]&lt;br /&gt;
* [[h-geo]]&lt;br /&gt;
* [[h-card]]&lt;br /&gt;
* [[hCalendar]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Draft Specifications]]&lt;/div&gt;</summary>
		<author><name>Andy sky</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=microformats2-prefixes&amp;diff=65876</id>
		<title>microformats2-prefixes</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=microformats2-prefixes&amp;diff=65876"/>
		<updated>2017-01-30T00:27:54Z</updated>

		<summary type="html">&lt;p&gt;Andy sky: /* COMPATIBILITY */ typo&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt;microformats 2 prefix conventions&amp;lt;/entry-title&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[microformats 2]] uses a small number of prefixes to distinguish microformats 2 class names from other class names.&lt;br /&gt;
&lt;br /&gt;
== motivating causes ==&lt;br /&gt;
As described on the [[microformats 2]] page.&lt;br /&gt;
&lt;br /&gt;
=== distinguishing properties from other classes ===&lt;br /&gt;
Current microformats properties re-use generic terms like &amp;quot;summary&amp;quot;, &amp;quot;photo&amp;quot;, &amp;quot;updated&amp;quot; both for ease of use and understanding.&lt;br /&gt;
&lt;br /&gt;
However, through longer term experience, we've seen sites that accidentally drop (or break) their microformats support (e.g. Upcoming.org, Facebook) because web authors sometimes rewrite all their class names, and either are unaware that microformats were in the page, or couldn't easily distinguish microformats property class names from other site-specific class names.&lt;br /&gt;
&lt;br /&gt;
This issue has been reported by a number of web authors:&lt;br /&gt;
* [http://html5doctor.com/microformats/#comment-10241 Wim's comment on HTML5Doctor] &amp;quot;Authors use classes like 'url' or 'region' all the time ... All sorts of markup might look like a microformat.&amp;quot;&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
There has also been an anecdotal report of a design firm who was not (yet) familiar with microformats seeing the &amp;quot;extra&amp;quot; classes that &amp;quot;that don't seem to be used&amp;quot; (without corresponding CSS rules) and asking if they &amp;quot;can remove them&amp;quot;. By making microformats class names different from generic words, authors unfamiliar with microformats may at least notice such distinction and infer special functionality accordingly.&lt;br /&gt;
&lt;br /&gt;
Thus microformats 2 uses ''prefixes'' for property class names, e.g.:&lt;br /&gt;
* '''p-summary''' instead of ''summary''&lt;br /&gt;
* '''u-photo''' instead of ''photo'' &lt;br /&gt;
* '''dt-updated''' instead of ''updated''&lt;br /&gt;
&lt;br /&gt;
Such prefixing of all microformats class names was first suggested by Scott Isaacs of Microsoft to Tantek on a visit to Microsoft sometime in 2006/2007, but specifically aimed at making microformats easier to parse. At the time the suggestion was rejected since microformats were focused on web authors rather than parsers.&lt;br /&gt;
&lt;br /&gt;
However, since experience has shown that distinguishing property class names is an issue for '''both web authors and parser developers''', this is a key change that microformats 2 is adopting. See the next section for details.&lt;br /&gt;
&lt;br /&gt;
=== existing microformats parsing requirements ===&lt;br /&gt;
A non-trivial number of parser and tools developers have been sufficiently frustrated with some general issues with microformats that they've done the significant extra work to support very different and less friendly alternatives (microdata, RDFa). Based on this real-world data (market behavior), it behooves us to address these general issues with microformats for this constituency.&lt;br /&gt;
&lt;br /&gt;
COMMUNITY and TOOLS (that) USE MICROFORMATS &lt;br /&gt;
* parser / parsing&lt;br /&gt;
* structured&lt;br /&gt;
* getting the data out&lt;br /&gt;
* json - 1:1 mapping&lt;br /&gt;
&lt;br /&gt;
[[parsing]] microformats currently requires&lt;br /&gt;
# a list of root class names of each microformat to be parsed&lt;br /&gt;
# a list of properties for each specific microformats, along with knowledge of the type of each property in order to parse their data from potentially different portions of the HTML markup&lt;br /&gt;
# some number of format-specific specific rules (markup/content optimizations)&lt;br /&gt;
&lt;br /&gt;
This has meant that whenever a new microformat is drafted/specificied/adopted, parsers need to updated to handle it correctly, at a minimum to parse them when inside other microformats and avoid errantly implying properties from one to the other (containment, [[mfo]] problem).&lt;br /&gt;
&lt;br /&gt;
== microformats 2 prefixes ==&lt;br /&gt;
=== naming conventions for generic parsing ===&lt;br /&gt;
There is a fairly simple solution to #1 and #2 from the above list, and we can make progress towards minimizing #3.  In short:&lt;br /&gt;
&lt;br /&gt;
'''Proposal: a set of naming conventions for microformat root class names and properties that make it obvious when:'''&lt;br /&gt;
* a class name represents a microformat root class name&lt;br /&gt;
* a class name represents a microformat property name&lt;br /&gt;
* a class name represents a microformat property that needs special parsing (specific type of property).&lt;br /&gt;
&lt;br /&gt;
In particular - derived from the real world examples of existing proven microformats (rather than any abstraction of what a schema should have)&lt;br /&gt;
* '''&amp;quot;h-*&amp;quot; for root class names''', e.g. &amp;quot;h-card&amp;quot;, &amp;quot;h-event&amp;quot;, &amp;quot;h-entry&amp;quot;&lt;br /&gt;
** The 'h-' prefix is based on the existing microformats naming pattern of starting with 'h'.&lt;br /&gt;
* '''&amp;quot;p-*&amp;quot; for simple (text) properties''', e.g. &amp;quot;p-fn&amp;quot;, &amp;quot;p-summary&amp;quot;&lt;br /&gt;
** vocabulary generic parsing, element text in general, treat certain HTML element/attribute combination as special and use those first, e.g. img/alt, abbr/title.&lt;br /&gt;
** The 'p-' prefix is based on the word &amp;quot;property&amp;quot; starting with 'p'.&lt;br /&gt;
* '''&amp;quot;u-*&amp;quot; for URL properties''', e.g. &amp;quot;u-url&amp;quot;, &amp;quot;u-photo&amp;quot;, &amp;quot;u-logo&amp;quot;&lt;br /&gt;
** special parsing required: prefer a/href, img/src, object/data etc. attributes to element contents.&lt;br /&gt;
** The 'u-' prefix is based on URL/URI starting with the letter 'u', which is the type of most of these related properties.&lt;br /&gt;
* '''&amp;quot;dt-*&amp;quot; for datetime properties''', e.g. &amp;quot;dt-start&amp;quot;, &amp;quot;dt-end&amp;quot;, &amp;quot;dt-bday&amp;quot;&lt;br /&gt;
** special parsing required: [[value-class-pattern]], in particular separate date time value parsing for better human readabillity / DRY balance.&lt;br /&gt;
** The 'dt-' prefix is based on &amp;quot;date time&amp;quot; having the initials &amp;quot;dt&amp;quot; and the preponderance of existing date time properties starting with &amp;quot;dt&amp;quot;, e.g. dtstart, dtend, dtstamp, dtreviewed.&lt;br /&gt;
*** Initially I had proposed &amp;quot;dt-*&amp;quot; but Chris Messina suggested reducing it to &amp;quot;d-*&amp;quot; so that all prefixes were a single letter - made sense.&lt;br /&gt;
*** However, I've noticed that Google+ is using &amp;quot;d-*&amp;quot; class names on [https://plus.google.com/109182513536739786206 profile pages], thus we can't really use 'd-' as a microformats 2 property parsing prefix. [[User:Tantek|Tantek]] 03:00, 22 July 2011 (UTC)&lt;br /&gt;
* '''&amp;quot;e-*&amp;quot; for element tree properties''' where the entire contained element hierarchy is the value, e.g. &amp;quot;e-content&amp;quot; (formerly &amp;quot;entry-content&amp;quot;) for [[hAtom]]. The 'e-' prefix can also be mnemonically remembered as &amp;quot;element tree&amp;quot;, &amp;quot;embedded markup&amp;quot;, or &amp;quot;encapsulated markup&amp;quot;.&lt;br /&gt;
** special parsing required: follow the [http://www.whatwg.org/specs/web-apps/current-work/multipage/the-end.html#serializing-html-fragments HTML spec: Serializing HTML Fragments algorithm] to create a serialization.&lt;br /&gt;
&lt;br /&gt;
This provides a simpler transition/education story for existing microformats authors/publishers: &lt;br /&gt;
* &amp;quot;h*&amp;quot; to &amp;quot;h-*&amp;quot;, &amp;quot;dt*&amp;quot; to &amp;quot;dt-*&amp;quot;, url-like properties to &amp;quot;u-*&amp;quot;, entire embedded markup to &amp;quot;e-*&amp;quot;, and &amp;quot;p-*&amp;quot; for all &amp;quot;plain text&amp;quot; properties.&lt;br /&gt;
&lt;br /&gt;
==== prefixes for future consideration ====&lt;br /&gt;
possibly also:&lt;br /&gt;
&amp;lt;div class=&amp;quot;discussion&amp;quot;&amp;gt;&lt;br /&gt;
* '''&amp;quot;s-*&amp;quot; for structured properties''' basically s-* works just like h-* except that no properties (e.g. 'name','url','photo') are implied when there are no properties present. Example uses: s-geo and s-adr. This is being considered as a result of [[microformats-2-parsing#Parsing_Literal_Values|microformats 2 parsing discussions]]. We can try it and see what happens. There's also no harm if publishers just use &amp;quot;h-&amp;quot; structures, they just (possibly) get a few extra properties if they happen to omit properties. &lt;br /&gt;
** -1. Although I do think the implied-literal parsing behaviour carries some complications and parsed-cruft with more 'structural' formats, introducing a further generic prefix to differentiate one kind of format from another is oesoteric, won't be understood by authors (we're already considering a full reversal rename of 'fn' to 'name' in response to user comprehension), and we've seen historically that mixed prefixes (v and h) also cause muddle. --[[User:BenWard|BenWard]] 06:30, 5 October 2011 (UTC)&lt;br /&gt;
*** This is good reasoning, especially the comparison to v vs. h prefixed root class names (my experience with authors concurs with that). Each new prefix introduces complexity and thus must have advantages sufficient to exceed the complexity cost. [[User:Tantek|Tantek]] 06:55, 5 October 2011 (UTC)&lt;br /&gt;
** Furthermore, both of the examples given here have in-the-wild use cases for literal parsing: Geo's existing documented optimisation of &amp;lt;code&amp;gt;1.233;0.453&amp;lt;/code&amp;gt; is applied in two (one valid) manners with the &amp;lt;code&amp;gt;abbr&amp;lt;/code&amp;gt; element (incorrectly as an expansion of a place name, and as an alternative to degree-format co-ordinates. Coordinates are also displayed in-place alongside map references, markers, and the like.) In the case of &amp;lt;code&amp;gt;adr&amp;lt;/code&amp;gt;, there's an overlap with existing uses of the &amp;lt;code&amp;gt;label&amp;lt;/code&amp;gt; label property, which is used in cases of unstructured addresses (common in most social network profile systems, also in vcalendar.) Based on previous discussion around unstructured addresses, Twitter uses &amp;lt;code&amp;gt;&amp;amp;lt;* class=&amp;quot;adr&amp;quot;&amp;gt;&amp;amp;lt;* class=&amp;quot;label&amp;quot;&amp;gt;&amp;lt;/code&amp;gt; on profiles ([https://twitter.com/intent/user?screen_name=benward&amp;amp;detailed Example].) Having literal parsing of &amp;lt;code&amp;gt;adr&amp;lt;/code&amp;gt; would be neater though, if &amp;lt;code&amp;gt;label&amp;lt;/code&amp;gt; were to be deprecated. --[[User:BenWard|BenWard]] 06:30, 5 October 2011 (UTC)&lt;br /&gt;
*** [[geo]] has been historically quite problematic in practice, despite our efforts at making it work better via optimizations. I'd like to see real world examples of &amp;quot;Coordinates are also displayed in-place alongside map references, markers, and the like&amp;quot; documented on a page like [[geo-examples]] so we can see how any kind of geo-markup could/would help. Interesting about the Twitter use of 'label' inside 'adr' - quite prescient as [[vCard4]] moved 'label' from being its own top-level property to being an attribute (what we used to call subproperty) of 'adr'. Thus we should consider adding 'p-label' as a property for 'h-adr', given a) Twitter's real world usage, b) the refactoring of label into adr in vCard4. [[User:Tantek|Tantek]] 06:55, 5 October 2011 (UTC)&lt;br /&gt;
* '''&amp;quot;e-*&amp;quot; for properties''' where the entire contained element hierarchy is the value, e.g. &amp;quot;e-content&amp;quot; (formerly &amp;quot;entry-content&amp;quot;) for [[hAtom]]. (2011-09-21 note: this has now been included in microformats 2, the below discussion is kept for posterity [[User:Tantek|Tantek]] 09:44, 21 September 2011 (UTC))&lt;br /&gt;
** unclear if this is necessary in general. and if so, if this is only for hAtom, that's insufficient to justify putting it in the generic syntax.&lt;br /&gt;
** Would be sufficient to have all &amp;lt;code&amp;gt;p-&amp;lt;/code&amp;gt; properties parse the complete content, including any nested mark-up if present, and then implementations to sanitize/run a &amp;lt;code&amp;gt;strip_tags&amp;lt;/code&amp;gt; style function (as per data input best practice) as appropriate. --[[User:BenWard|BenWard]] 22:05, 19 September 2011 (UTC)&lt;br /&gt;
** Ouch that sounds like passing on complexity downstream for all cases just to handle *one* known use-case so far. Since we'd typically do the opposite (simplify for the 99% case over the 1% case), passing on content including mark-up by default seems like a step backwards. Also, given how many vulnerabilities seem to deal with parsing/filtering, doing that *first* rather than burdening downstream implementations seems like the right choice. I'd rather wait til we get a concrete complaint from a microformats-2 hAtom consumer before worrying about this for hAtom 2.0. Or are there other current real world use cases besides Atom? [[User:Tantek|Tantek]] 22:22, 19 September 2011 (UTC)&lt;br /&gt;
*** In addition to &amp;lt;code&amp;gt;entry-content&amp;lt;/code&amp;gt; in hAtom there's also &amp;lt;code&amp;gt;entry-summary&amp;lt;/code&amp;gt;, plus any large region of text in other microformats, which at the very least can commonly contain additional hyperlinks, images, and phrasing mark-up: &amp;lt;code&amp;gt;description&amp;lt;/code&amp;gt; in hCal, hReview, hProduct, hListing, &amp;lt;code&amp;gt;note&amp;lt;/code&amp;gt; in hCard, &amp;lt;code&amp;gt;ingredient&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;instructions&amp;lt;/code&amp;gt; in hRecipe may link to a store, or wikipedia entry for the ingredient, or include an image to illustrate a step of a recipe, as well as recipe instructions that are expressed as lists. If an author/publisher marks up a property in such a way that it contains further mark-up, that mark-up should be assumed to be part of the value. It's always going to be up to an implementation to decide whether it wishes to translate that HTML mark-up into some other format (e.g. Markdown-esque text annotation when converting to something like &amp;lt;code&amp;gt;vcard&amp;lt;/code&amp;gt;, or some other kind of formatting language on non-HTML platforms, or stripping text altogether. —[[User:BenWard|BenWard]] 01:05, 20 September 2011 (UTC)&lt;br /&gt;
**** While hAtom's &amp;lt;code&amp;gt;entry-content&amp;lt;/code&amp;gt; and possibly hCard's &amp;lt;code&amp;gt;note&amp;lt;/code&amp;gt; may be the only existing practical use-cases (&amp;lt;code&amp;gt;entry-summary&amp;lt;/code&amp;gt; and other &amp;quot;large region of text&amp;quot; are potential/prospective use cases), I'm now convinced the hAtom use-case alone is worthy of including the &amp;quot;e-&amp;quot; prefix because it enables a full fidelity replacement for typical Atom use cases. [[User:Tantek|Tantek]] 09:44, 21 September 2011 (UTC)&lt;br /&gt;
* '''&amp;quot;i-*&amp;quot; for ID properties''', e.g. &amp;quot;i-uid&amp;quot; (if this is the only one, then perhaps we just always re-use &amp;quot;uid&amp;quot; or collapse with &amp;quot;u-*&amp;quot; into &amp;quot;u-id&amp;quot;.)&lt;br /&gt;
** parsing is no different than &amp;quot;u-*&amp;quot; parsing, thus no need to introduce for now.&lt;br /&gt;
* '''&amp;quot;n-*&amp;quot; for numbers''', e.g. &amp;quot;n-rating&amp;quot;, &amp;quot;n-geo&amp;quot;, where the numbers may have different human-readable-friendly and decimal/machine values (e.g. with geo lat/long degrees minutes seconds vs decimal).&lt;br /&gt;
** requires definition of how would different parsing work before worthy of consideration.&lt;br /&gt;
* '''&amp;quot;t-*&amp;quot; for time duration''', e.g. &amp;quot;t-duration&amp;quot; in [[hCalendar]], [[hAudio]], [[hRecipe]] (note also Google's hRecipe extensions &amp;quot;preptime&amp;quot;, &amp;quot;cooktime&amp;quot;, &amp;quot;totaltime&amp;quot;)&lt;br /&gt;
** requires definition of how would different parsing work before worthy of consideration.&lt;br /&gt;
** now that the HTML5 &amp;amp;lt;time&amp;gt; element supports representing durations, we should simply incorporate duration (and timezone at that) into the 'dt-' datetime parsing rules. Certainly no need for a separate prefix. [[User:Tantek|Tantek]] 08:45, 1 December 2011 (UTC)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== reserving other prefixes ====&lt;br /&gt;
We should '''reserve all other single-letter-dash prefixes for future use''' (within the scope of '''h-''' objects: outside of the context of an '''h-''' object, this is inapplicable).&lt;br /&gt;
&lt;br /&gt;
In practice we have seen little (if any) use of single-letter-dash prefixing of class names by web developers/designers, and thus in practice we think this will have little if any impact/collisions.  Certainly far fewer than existing generic microformat property class names like &amp;quot;title&amp;quot;, &amp;quot;note&amp;quot;, &amp;quot;summary&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==== existing single letter class prefixes ====&lt;br /&gt;
We should document existing usage of single/double letter prefixed names:&lt;br /&gt;
* Google+ (e.g. [https://plus.google.com/109182513536739786206 profile page], others) uses:&lt;br /&gt;
** '''a-'''&lt;br /&gt;
** '''d-'''&lt;br /&gt;
** '''g-''', '''gb*'''&lt;br /&gt;
* [http://getskeleton.com/#utilities Skeleton] uses &lt;br /&gt;
** '''u-''' for utility classes u-full-width u-max-full-width u-pull-right u-pull-left and u-cf&lt;br /&gt;
* [https://github.com/suitcss/utils SUITCSS] uses&lt;br /&gt;
** '''u-''' for utility classes. Usually two words written in camelCase: u-alignTop u-floatLeft however some use abbreviations: u-nbfc (new block formatting context) u-cf (clearfix)&lt;br /&gt;
* Yahoo&lt;br /&gt;
** '''y-'''&lt;br /&gt;
* others? please add alphabetical by company/org name.&lt;br /&gt;
&lt;br /&gt;
== microformats 2 example ==&lt;br /&gt;
Example: taking that simple heading hCard example forward:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;h1 class=&amp;quot;h-card&amp;quot;&amp;gt;Chris Messina&amp;lt;/h1&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
As part of microformats 2.0 we would immediately define root class names and property names for all existing microformats and drafts consistent with this naming convention, and require support thereof from all new implementations, as well as strongly encouraging existing implementations to adopt the simplified microformats 2.0 syntax and mechanism. Question: which microformats deserve explicit backward compatibility?&lt;br /&gt;
&lt;br /&gt;
As a community we would continue to use the microformats [[process]] both for researching and determining the need for new microformats, and for naming new microformat property names for maximum re-use and interoperability of a shared vocabulary.&lt;br /&gt;
&lt;br /&gt;
If it turns out we need a new property type in the future, we can use one of the remaining single-letter-prefixes to add it to microformats 2.0. This would require updating of parsers of course, but in practice the number of different types of properties has grown very slowly, and we know from other schema/programming languages that there's always some small limited number of scalar/atomic property types that you need, and using those you can create compound types/objects that represent richer / more complicated types of data.&lt;br /&gt;
&lt;br /&gt;
=== ADVANTAGES ===&lt;br /&gt;
This has numerous advantages:&lt;br /&gt;
* '''better maintainability''' - much more obvious to web authors/designers/publishers which class names are for/from microformats.&lt;br /&gt;
* '''no chance of collision''' - for all practical purposes with existing class names and thus avoiding any need to add more complex CSS style rules to prevent unintended styling effects.&lt;br /&gt;
* '''simpler parsing''' - parsers can now do a simple stream-parse (or in-order DOM tree walk) and parse out '''all''' microformat objects, properties, and values, without having to know anything about any specific microformats.&lt;br /&gt;
* '''separation of syntax and vocabulary''' - by abstracting microformats 2 syntax independent of any vocabulary, it allows and encourages development of shared vocabularies  that can work in alternative syntaxes.&lt;br /&gt;
&lt;br /&gt;
More examples: here is that same heading example with name components:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;h1 class=&amp;quot;h-card&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;span class=&amp;quot;p-fn&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;span class=&amp;quot;p-given-name&amp;quot;&amp;gt;Chris&amp;lt;/span&amp;gt;&lt;br /&gt;
  &amp;lt;abbr class=&amp;quot;p-additional-name&amp;quot;&amp;gt;R.&amp;lt;/abbr&amp;gt;&lt;br /&gt;
  &amp;lt;span class=&amp;quot;p-family-name&amp;quot;&amp;gt;Messina&amp;lt;/span&amp;gt;&lt;br /&gt;
 &amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/h1&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
with a hyperlink to Chris's URL:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;h1 class=&amp;quot;h-card&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;a class=&amp;quot;p-fn u-url&amp;quot; href=&amp;quot;http://factoryjoe.com/&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;span class=&amp;quot;p-given-name&amp;quot;&amp;gt;Chris&amp;lt;/span&amp;gt;&lt;br /&gt;
  &amp;lt;abbr class=&amp;quot;p-additional-name&amp;quot;&amp;gt;R.&amp;lt;/abbr&amp;gt;&lt;br /&gt;
  &amp;lt;span class=&amp;quot;p-family-name&amp;quot;&amp;gt;Messina&amp;lt;/span&amp;gt;&lt;br /&gt;
 &amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;/h1&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== COMPATIBILITY ===&lt;br /&gt;
&lt;br /&gt;
microformats 2.0 is backwards compatible in that it permits content authors to markup with both old and new class names for compatibility with old tools.&lt;br /&gt;
&lt;br /&gt;
Here is a simple example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;h1 class=&amp;quot;h-card vcard&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;Chris Messina&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/h1&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
a microformats 2.0 parser would see the class name &amp;quot;h-card&amp;quot; and imply the one required property from the contents, while a microformats 1.0 parser would find the class name &amp;quot;vcard&amp;quot; and then look for the class name &amp;quot;fn&amp;quot;. no data duplication is required. this is a very important continuing application of the &amp;lt;abbr title=&amp;quot;don't repeat yourself&amp;quot;&amp;gt;DRY&amp;lt;/abbr&amp;gt; [[principle]].&lt;br /&gt;
&lt;br /&gt;
And the above hyperlinked example with both sets of class names:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;h1 class=&amp;quot;h-card vcard&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;a class=&amp;quot;p-fn u-url n fn url&amp;quot; href=&amp;quot;http://factoryjoe.com/&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;span class=&amp;quot;p-given-name given-name&amp;quot;&amp;gt;Chris&amp;lt;/span&amp;gt;&lt;br /&gt;
  &amp;lt;abbr class=&amp;quot;p-additional-name additional-name&amp;quot;&amp;gt;R.&amp;lt;/abbr&amp;gt;&lt;br /&gt;
  &amp;lt;span class=&amp;quot;p-family-name family-name&amp;quot;&amp;gt;Messina&amp;lt;/span&amp;gt;&lt;br /&gt;
 &amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;/h1&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== vendor extensions ==&lt;br /&gt;
(this section was only discussed verbally and not written up during discussions - capturing here as it is topical)&lt;br /&gt;
&lt;br /&gt;
Proprietary extensions to formats have typically been shortlived experimental failures with one big recent exception.&lt;br /&gt;
&lt;br /&gt;
Proprietary or experimental CSS3 property implementations have been very successful.&lt;br /&gt;
&lt;br /&gt;
There has been much use of border radius properties and animations/transitions which use CSS properties with vendor-specific prefixes like:&lt;br /&gt;
&lt;br /&gt;
* -moz-border-radius&lt;br /&gt;
* -webkit-border-radius&lt;br /&gt;
&lt;br /&gt;
etc.&lt;br /&gt;
&lt;br /&gt;
Note that these are merely string '''prefixes''', not bound to any URL, and thus not namespaces in any practical sense of the word.  This is quite an important distinction, as avoiding the need to bind to a URL has made them easier to support and use.&lt;br /&gt;
&lt;br /&gt;
This use of vendor specific CSS properties has in recent years allowed the larger web design/development/implementor communities to experiment and iterate on new CSS features while the features were being developed and standardized.&lt;br /&gt;
&lt;br /&gt;
The benefits have been two-fold:&lt;br /&gt;
* designers have been able to make more attractive sites sooner (at least in some browsers)&lt;br /&gt;
* features have been market / real-world tested before being fully standardized, thus resulting in better features&lt;br /&gt;
&lt;br /&gt;
Implementers have used/introduced &amp;quot;x-&amp;quot; prefixes for IETF MIME/content-types for experimental content-types, MIME parameter extensions, and HTTP header extensions, per RFC 2045 Section 6.3, RFC 3798 section 3.3, and [https://secure.wikimedia.org/wikipedia/en/wiki/List_of_HTTP_header_fields#Common_non-standard_headers Wikipedia: HTTP header fields - non-standard headers] (could use RFC reference instead) respectively, like:&lt;br /&gt;
&lt;br /&gt;
* application/x-latex (per [https://secure.wikimedia.org/wikipedia/en/wiki/Internet_media_type#Type_x Wikipedia Internet media type: Type x])&lt;br /&gt;
* x-spam-score (in email headers)&lt;br /&gt;
* X-Pingback (per [http://en.wikipedia.org/wiki/Pingback Wikipedia:Pingback])&lt;br /&gt;
&lt;br /&gt;
Some standard types started as experimental &amp;quot;x-&amp;quot; types, thus demonstrating this experiment first, standardize later approach has worked for at least some cases:&lt;br /&gt;
&lt;br /&gt;
* image/x-png (standardized as image/png, both per [http://tools.ietf.org/html/rfc2083 RFC2083])&lt;br /&gt;
&lt;br /&gt;
There have been times when specific sites have wanted to extend microformats beyond what the set of properties in the microformat, and currently lack any '''experimental''' way to do so - to try and see if a feature (or even a whole format) is interesting in the real world before bothering to pursue researching and walking it through the microformats process.  Thus:&lt;br /&gt;
&lt;br /&gt;
'''Proposal:'''&lt;br /&gt;
* '*-x-' + '-' + meaningful name for root and property class names&lt;br /&gt;
** where &amp;quot;*&amp;quot; indicates the single-character-prefix as defined above&lt;br /&gt;
** where &amp;quot;x&amp;quot; indicates a literal 'x' for an experimental extension OR&lt;br /&gt;
** OR &amp;quot;x&amp;quot; indicates a vendor prefix (more than one character, e.g. like CSS vendor extension abbreviations, or some stock symbols, avoiding first words/phrases/abbreviations of microformats properties like dt-)&lt;br /&gt;
** e.g.&lt;br /&gt;
** &amp;quot;h-bigco-one-ring&amp;quot; - a hypothetical &amp;quot;bigco&amp;quot; vendor-specific &amp;quot;onering&amp;quot; microformat root class name.&lt;br /&gt;
** &amp;quot;p-goog-preptime&amp;quot; - to represent [http://www.google.com/support/webmasters/bin/answer.py?answer=173379 Google's &amp;quot;preptime&amp;quot; property extension] to [[hRecipe]] (aside: &amp;quot;duration&amp;quot; may be another property type to consider separate from &amp;quot;datetime&amp;quot; as it may be subject to different parsing rules.)&lt;br /&gt;
** &amp;quot;p-x-prep-time&amp;quot; - a possible experimental property name to be added to hRecipe upon consideration/documentation of real-world usage/uptake.&lt;br /&gt;
&lt;br /&gt;
Background - this proposal is a composition of the following (at least somewhat) successful vendor extension syntaxes&lt;br /&gt;
* [http://www.w3.org/TR/CSS21/syndata.html#vendor-keywords CSS 2.1 4.1.2.1 Vendor-specific extensions]&lt;br /&gt;
* IETF MIME/content-type &amp;quot;x-*&amp;quot; extensions per RFC 2045 Section 6.3. [http://en.wikipedia.org/wiki/Internet_media_type]&lt;br /&gt;
* IETF MIME experimental fields (e.g. x-spam-score)&lt;br /&gt;
* HTTP header extensions (e.g. x-pingback)&lt;br /&gt;
* note also [http://www.mnot.net/blog/2009/02/18/x- some critical thoughts from mnot]&lt;br /&gt;
&lt;br /&gt;
== issues ==&lt;br /&gt;
=== Hungarian prefixing issues ===&lt;br /&gt;
Raised by [[User:BenWard|BenWard]] 01:16, 11 April 2011 (UTC)&lt;br /&gt;
&lt;br /&gt;
Microformats 2.0 proposes using an explicit &amp;lt;code&amp;gt;[a-z]-&amp;lt;/code&amp;gt; prefix on properties, to differentiate them from other uses of the class attribute, and identify them as microformat properties, such that they can be parsed generically.&lt;br /&gt;
&lt;br /&gt;
* The differentiation use case is supported by anecdotal evidence of sites (such as Facebook, Twitter, Yahoo) removing microformats or breaking objects in page edits. The addition of a prefix assists self-documentation of code.&lt;br /&gt;
* The generic parsing use case is supported by Google Rich Snippets, Yahoo Search Monkey, and extensible plugins like Operator and the Firefox microformats parser. Although these extract microformats from the page, they are intermediate systems between the page content and the actual interpretation of the data. They need to parse all objects from a page, and then another developer or application will interpret some of them into something else.&lt;br /&gt;
&lt;br /&gt;
(Note: the theoretical assertion &amp;quot;they need to parse all objects from a page&amp;quot; is not actually backed by *any* existing use of microformats/microdata/RDFa parsing - *none* of those parse &amp;quot;all objects from a page&amp;quot; if you consider every markup element an &amp;quot;object&amp;quot; - rather, one of the strength of microformats (mimicked by the others) is that the publisher is able to markup *just* the data to be extracted, rather than perhaps purely &amp;quot;presentational&amp;quot; content, ads, UI widgets etc. -- [[User:Tantek|Tantek]] 02:15, 11 April 2011 (UTC) )&lt;br /&gt;
&lt;br /&gt;
The µf2 proposal goes further, though, into a small vocabulary of [http://en.wikipedia.org/wiki/Hungarian_notation Hungarian] prefixes of properties based on data type. This increases the level of understanding required to read microformats, and reduces the benefit of all microformat properties having a consistent identifying prefix.&lt;br /&gt;
&lt;br /&gt;
(Debatable assertion:&amp;quot;increases the level of understanding required to read microformats&amp;quot; - how? In microformats 2.0, authors/developers know that any single-letter-and-hyphen prefixed class name is for microformats 2.0, in contrast to today - developers have consistently given feedback that's hard to tell which generic class names (other than h* names) are microformat related and which are not. As for specific prefixes, &amp;quot;h-*&amp;quot; is special and follows the pattern of existing microformats. p = generic (p)roperty, and the other prefixes have trivial mnemonics as well, d for (d)atetimes etc. (so far, hopefully we can keep that up). -- [[User:Tantek|Tantek]] 02:15, 11 April 2011 (UTC) )&lt;br /&gt;
&lt;br /&gt;
Hungarian notation itself is controversial amongst programmers. &lt;br /&gt;
Plenty find it uglifies their code, can be a cause of confusion (especially when very-short prefixes are used, or esoteric types, or where the declared set of types differs from the available types in other programming languages.) Others support its benefits to type identification.&lt;br /&gt;
&lt;br /&gt;
(Programmers are not the priority here, rather, designers/authors/publishers are. We design microformats for them first as they're the common use case, and we should avoid making statements that seem to imply any priority for the aesthetic preferences of programmers. -- [[User:Tantek|Tantek]] 02:15, 11 April 2011 (UTC))&lt;br /&gt;
&lt;br /&gt;
Critically, however, there is no clear indication that either of the above use cases requires types to be strongly identified.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;discussion&amp;quot;&amp;gt;&lt;br /&gt;
* For identifying µf in pages, a differentiator is required from regular classnames. There is no evidence of further requirement to differentiate between properties beyond their name (and existing criticisms of Hungarian notation suggest it can harm understandability.)&lt;br /&gt;
** There is such evidence, and perhaps thus this would be a good FAQ topic. The derivation is quite simple - it comes directly from minimally affecting existing markup, and maximally using existing semantic information. Example of special purpose parsing, URL-like properties use the value of the 'href' (or equivalent) attribute because that's where that data already is in pages. Similarly with dates and datetimes - special parsing rules for that data type have permitted us to design the [[value-class-pattern]] to take advantage of specially parsing date and time separation. By re-using data *where publishers already put it, including attributes vs inline* we minimize the risk of data drift. -- [[User:Tantek|Tantek]] 02:15, 11 April 2011 (UTC)&lt;br /&gt;
** Additionally, this special type-specific parsing of microformats properties conveys microformats advantages of markup brevity that other syntaxes lack. E.g. you can convey *multiple* properties and values from a single existing element, e.g. the *very* common real-world pattern &amp;lt;code&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;a href=&amp;quot;http://example.com/user&amp;quot;&amp;gt;User Name&amp;lt;/a&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;/code&amp;gt; is minimally marked up as &amp;lt;code&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;span class=&amp;quot;h-card&amp;quot;&amp;gt;&amp;lt;a class=&amp;quot;p-name u-url&amp;quot; href=&amp;quot;http://example.com/user&amp;quot;&amp;gt;User Name&amp;lt;/a&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
* For generic parsing, there is no requirement that datatypes be established at extraction time. Data types will instead be applied by the developers of apps and widgets that build on the generic parsers.&lt;br /&gt;
** There are requirements based on experience with actual markup. In order to support the patterns of where content publishers put the data we want to extract, we have determined (based on those publishing patterns) a few different ways (types) of parsing this data. This is all captured in the [[hcard-parsing]] property-specific parsing rules each of which were added one at a time as Brian Suda and myself encountered real world sites wanting to use [[hCard]] but not wanting to have to rewrite their markup (adding one span and some class names was about the limit, moving tags/attributes around was a showstopper in many/most cases), and each of the microformats 2.0 &amp;quot;types&amp;quot; are directly derived from such special purpose data/type parsing across *multiple* microformats. -- [[User:Tantek|Tantek]] 02:15, 11 April 2011 (UTC)&lt;br /&gt;
* A counter argument may be that special properties in microformats—such as URLs, or images—need to be identified because in microformats it is common to parse an attribute (href, or src) rather than inner text of an element for these properties. However, in the context of extracting and then interpreting HTML in other contexts this is insufficient: For example, though an image only exists as a single property in vcard, in HTML it is both a URL to a resource ''and'' and text string (alt) representing an accessible fallback. A ‘generic extracter’ of microformats from a page must capture all of this information from HTML, so that the interpreting application can choose which data type is most relevant to its context. Likewise, an application interpreting a URL may also consider using the original inner text as an inferred label. Both pieces of data are useful, and a generic parser should not discard elemental semantics at the extraction level.&lt;br /&gt;
** It's not just &amp;quot;*common* to parse an attribute rather than inner text of an element for these properties&amp;quot; - it is the vast overwhelming majority - if not all - such cases!&lt;br /&gt;
** One misconception: &amp;quot;image only exists as a single property&amp;quot;. No, there is both 'photo' and 'logo'. The 'url' and 'sound' properties are also of type 'url'. For all of these, when parsing an &amp;quot;object&amp;quot; element, you must use the 'data' attribute first for example. hCalendar has &amp;quot;attachment&amp;quot; as well. Etc.&lt;br /&gt;
** Theoretical assertion: &amp;quot;A ‘generic extracter’ of microformats from a page must capture all of this information from HTML, so that the interpreting application can choose which data type is most relevant to its context.&amp;quot; Why? There is no existing nor demonstrated use case for this requirement, even across other formats. While I agree it &amp;quot;might be nice&amp;quot; to develop a new &amp;quot;structured image&amp;quot; type - that's brand new work (deserving of research per the [[process]] etc.), and not a good source of reasoning to reject existing working patterns. I reject blocking microformats 2.0 on an as-yet-to-be-researched-enhancement. This is certainly a case where &amp;quot;better&amp;quot; is an enemy of the good.&lt;br /&gt;
** Theoretical assertion: &amp;quot;a generic parser should not discard elemental semantics at the extraction level&amp;quot; - already does for other syntaxes like both microdata and RDFa - so clearly this is not a reasonable &amp;quot;should not&amp;quot; assertion (and thus unnecessary) for development of a minimally competitive syntax. RDFa kind of cheats by overloading the 'rel' attribute in attempt to solve the name+url case as mentioned above, but that's only two types - and existing real world use of microformats has demonstrated utility of a few more.  -- [[User:Tantek|Tantek]] 02:15, 11 April 2011 (UTC)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Given this, hungarian prefixes are of no benefit to parsers (and may in fact harm applications down the chain if parsing is prematurely strict.) It would be sufficient then not to concern embedding data types in property names, and instead settle on one single property prefix to differentiate all properties consistently. This would reduce the prefixes to just 3:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code&amp;gt;h&amp;lt;/code&amp;gt; would indicates a root class name. An ‘object in HTML’.&lt;br /&gt;
* &amp;lt;code&amp;gt;p&amp;lt;/code&amp;gt; would indicates a property within an object.&lt;br /&gt;
* &amp;lt;code&amp;gt;x&amp;lt;/code&amp;gt; would indicates an experimental extension to an object.&lt;br /&gt;
&lt;br /&gt;
--[[User:BenWard|BenWard]] 01:16, 11 April 2011 (UTC)&lt;br /&gt;
&lt;br /&gt;
The primary benefit of type-specific parsing is *not* for parsers, but rather, publishers (who we still hold in higher priority than parsers).&lt;br /&gt;
&lt;br /&gt;
I will also note that *each* of the type-specific parsing methods in [[hcard-parsing]] was added both conservatively, reluctantly, and only when it became clear that such type-specific publishing patterns existing across *multiple* sites that would otherwise be unable to change their markup to work with microformats (Yes, I'm wishing now that I better documented exactly *which* sites, precisely *when*, but like many startups, early on we didn't exactly know how much to document vs get things done - frankly I think we documented far more than any other comparable such efforts, e.g. we managed to at least capture/grow both an explicit [[process]] and [[principles]] in *far* greater detail than anything remotely comparable either before microformats or since!). The type-specific parsing features are certainly not overdesigned, on the contrary they've *slowly* evolved, adapting to real world data on the web.&lt;br /&gt;
&lt;br /&gt;
While per the [[simplicity]] principle, I would actually *strongly* prefer to only have the three prefixes given above, or actually just *two* (I started with just two for the design of microformats 2.0 actually, just &amp;quot;h-*&amp;quot; and &amp;quot;p-*&amp;quot;), doing so would be a step *backwards* in terms of the adaptability of microformats to existing markup, and that's IMHO an unacceptable barrier, and  a sufficiently high barrier to hurt the adoption/applicability of microformats 2.0. &lt;br /&gt;
&lt;br /&gt;
(Aside: In addition, note that you still need h-x-* for experimental objects, and thus it's *simpler* to simply have *both* h-x-* and p-x-* rather than add x-*. Alternatively x-h-* and x-p-* is no better, in some ways worse, in that object vs. property is a more important distinction for parsers than established vs experimental, especially if/when an experimental property (or object) may be adopted. Also, mild precdent: PNG started with image/x-png, not x-image/png.).&lt;br /&gt;
&lt;br /&gt;
To put it in a positive way, type-specific parsing conveys microformats a publisher-markup-density (and re-use) advantage which neither microdata nor RDFa have, and it would behoove us to *keep* this significant real-world advantage as we evolve microformats.&lt;br /&gt;
&lt;br /&gt;
-- [[User:Tantek|Tantek]] 02:15, 11 April 2011 (UTC)&lt;br /&gt;
&lt;br /&gt;
== see also ==&lt;br /&gt;
* [[microformats-2]]&lt;br /&gt;
* [[microformats-2-brainstorming]]&lt;br /&gt;
* [[microformats-2-prefixes]]&lt;br /&gt;
* [[microformats-2-faq]]&lt;/div&gt;</summary>
		<author><name>Andy sky</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=existing-rel-values&amp;diff=64858</id>
		<title>existing-rel-values</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=existing-rel-values&amp;diff=64858"/>
		<updated>2015-03-13T15:47:51Z</updated>

		<summary type="html">&lt;p&gt;Andy sky: /* HTML5 link type extensions */ Removed DCTERMS.identifier as explicitly stated to be in the &amp;quot;literal&amp;quot; range as defined in RDFa spec&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt; existing rel values &amp;lt;/entry-title&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This page contains tables of known HTML rel values from specifications, formats, proposals, brainstorms, and non-trivial [[POSH]] usage in the wild.  In addition, dropped and rejected values are listed at the end for comprehensiveness.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;usage&amp;quot;&amp;gt;usage&amp;lt;/span&amp;gt;: see [[rel-faq#How_is_rel_used|how is 'rel' used]].  Regarding &amp;lt;span id=&amp;quot;rev&amp;quot;&amp;gt;rev&amp;lt;/span&amp;gt;, see: [[rel-faq#Should_rev_even_be_used|should 'rev' even be used]].&lt;br /&gt;
&lt;br /&gt;
This page is also the official rel registry ([http://www.whatwg.org/specs/web-apps/current-work/multipage/links.html#other-link-types][http://www.w3.org/TR/html5/links.html#other-link-types]). Add new and proposed rel values to the following section:&lt;br /&gt;
* [[existing-rel-values#HTML5_link_type_extensions|HTML5 link type extension]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== formats ==&lt;br /&gt;
These rel values are defined formats from specifications (HTML 4, microformats) are thus are &amp;lt;strong&amp;gt;recommended for general use&amp;lt;/strong&amp;gt;.  Alphabetically ordered by value.&lt;br /&gt;
&lt;br /&gt;
Note:&lt;br /&gt;
* &amp;lt;strong&amp;gt;Do not&amp;lt;/strong&amp;gt; add proposed rel values for HTML5 here, add them to the [[#HTML5_link_type_extensions|HTML5 link type extensions]] table.&lt;br /&gt;
* &amp;lt;strong&amp;gt;Do not&amp;lt;/strong&amp;gt; add rel values you find in the wild to this table of rel formats, instead add them to the table in the [[existing-rel-values#POSH_usage|POSH section]].&lt;br /&gt;
* &amp;lt;strong&amp;gt;Do not&amp;lt;/strong&amp;gt; add non-HTML rel values you find to this table of rel formats, instead add them to the table in the [[existing-rel-values#non_HTML_rel_values|non HTML rel values section]].&lt;br /&gt;
* &amp;lt;strong&amp;gt;Do not&amp;lt;/strong&amp;gt; add rel values from obsolete/superceded proposals or drafts, instead add them to the table in the &amp;quot;dropped&amp;quot; section.&lt;br /&gt;
&lt;br /&gt;
Sources:&lt;br /&gt;
* W3C Recommendations: &lt;br /&gt;
** [http://www.w3.org/TR/html401/types.html#h-6.12 HTML 4.01 section 6.12 Link types] (HTML4 Link types)&lt;br /&gt;
** [http://www.w3.org/TR/grddl/ Gleaning Resource Descriptions from Dialects of Languages] (GRDDL)&lt;br /&gt;
* [[microformats]] specifications&lt;br /&gt;
** [[xfn]]&lt;br /&gt;
** [[rel-license]]&lt;br /&gt;
** [[rel-nofollow]]&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! Keyword&lt;br /&gt;
! Effect on &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt;&lt;br /&gt;
! Effect on &amp;lt;code&amp;gt;a&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;area&amp;lt;/code&amp;gt;&lt;br /&gt;
! Brief description &amp;lt;br /&amp;gt;(from the relevant specification where possible)&lt;br /&gt;
! Link to defining specification&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-acquaintance|acquaintance]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the person represented by the current document considers the person represented by the referenced document to be an acquaintance&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-alternate|alternate]]&lt;br /&gt;
| external resource&lt;br /&gt;
| external relation&lt;br /&gt;
| Designates substitute versions for the document in which the link occurs. When used together with the &amp;lt;code&amp;gt;lang&amp;lt;/code&amp;gt; attribute, it implies a translated version of the document. When used together with the &amp;lt;code&amp;gt;media&amp;lt;/code&amp;gt; attribute, it implies a version designed for a different medium (or media). &lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-appendix|appendix]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document serving as an appendix in a collection of documents. &lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-bookmark|bookmark]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a bookmark. A bookmark is a link to a key entry point within an extended document. The &amp;lt;code&amp;gt;title&amp;lt;/code&amp;gt; attribute may be used, for example, to label the bookmark. Note that several bookmarks may be defined in each document. &lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-chapter|chapter]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document serving as a chapter in a collection of documents.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-child|child]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is a child of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-colleague|colleague]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is a colleague of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-contact|contact]] &lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the person represented by the current document considers the person represented by the referenced document to be a contact&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-contents|contents]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document serving as a table of contents. Some user agents also support the synonym ToC (from &amp;quot;Table of Contents&amp;quot;).&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-copyright|copyright]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a copyright statement for the current document.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-co-resident|co-resident]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person lives in the same residence as the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-co-worker|co-worker]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is a co-worker of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-crush|crush]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| this person considers the referenced person to be a crush (i.e. has a crush on the referenced person)&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-date|date]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| this person considers the referenced person to be a date (i.e. is dating the referenced person)&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-friend|friend]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the person represented by the current document considers the person represented by the referenced document to be a friend&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-glossary|glossary]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document providing a list of terms and their definitions that pertain to the current document.||[http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-help|help]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document offering help (more information, links to other sources information, etc.)&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-its-rules|its-rules]]&lt;br /&gt;
| allowed&lt;br /&gt;
| not allowed&lt;br /&gt;
| Refers to a document with external ITS rules.&lt;br /&gt;
| [http://www.w3.org/TR/its20/#selection-global-html5 Internationalization Tag Set (ITS) Version 2.0]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-kin|kin]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is part of the extended family of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-license|license]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| &amp;amp;hellip;indicates that the &amp;lt;nowiki&amp;gt;[referenced document]&amp;lt;/nowiki&amp;gt; is a license for the current page.&lt;br /&gt;
| [[rel-license]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-me|me]]&lt;br /&gt;
| external relation&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced document represents the same person as does the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-met|met]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| this person has met the referenced person&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-muse|muse]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person inspires the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-neighbor|neighbor]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person lives nearby the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-next|next]]&lt;br /&gt;
| external relation&lt;br /&gt;
| external relation&lt;br /&gt;
| Refers to the next document in a linear sequence of documents. User agents may choose to preload the &amp;quot;next&amp;quot; document, to reduce the perceived load time.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-nofollow|nofollow]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| indicates that the destination of that hyperlink {{should-not}} be afforded any additional weight or ranking by user agents which perform link analysis upon web pages (e.g. search engines).&lt;br /&gt;
| [[rel-nofollow]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-parent|parent]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is a parent of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-prev|prev]]&lt;br /&gt;
| external relation&lt;br /&gt;
| external relation&lt;br /&gt;
| Refers to the previous document in an ordered series of documents. Some user agents also support the synonym &amp;quot;Previous&amp;quot;.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-previous|previous]]&lt;br /&gt;
| external relation&lt;br /&gt;
| external relation&lt;br /&gt;
| Synonym of &amp;lt;code&amp;gt;prev&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-section|section]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document serving as a section in a collection of documents.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sibling|sibling]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is a sibling of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-spouse|spouse]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is a spouse of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-start|start]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to the first document in a collection of documents. This link type tells search engines which document is considered by the author to be the starting point of the collection.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-stylesheet|stylesheet]]&lt;br /&gt;
| external resource&lt;br /&gt;
| not allowed&lt;br /&gt;
| a style sheet for the current document&amp;lt;br /&amp;gt; used with the invisible &amp;lt;link href&amp;gt; element which is not ideal for content relationships. Content relationships should be user visible and thus uses with &amp;lt;a href&amp;gt; are strongly preferred. Unfortunately the use of stylesheet in user visible content like &amp;lt;a href&amp;gt; appears to be strictly theoretical.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-subsection|subsection]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document serving as a subsection in a collection of documents.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sweetheart|sweetheart]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| this person considers the referenced person to be their sweetheart&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-tag|tag]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| &amp;amp;hellip;indicates that the &amp;lt;nowiki&amp;gt;[referenced document]&amp;lt;/nowiki&amp;gt; is an author-designated &amp;quot;tag&amp;quot; (or keyword/subject) for the current page.&lt;br /&gt;
| [[rel-tag]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-toc|toc]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Synonym of &amp;lt;code&amp;gt;contents&amp;lt;/code&amp;gt; (from &amp;quot;Table Of Contents&amp;quot;)&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-transformation|transformation]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Relates a source document to a transformation, usually represented in XSLT, that relates the source document syntax to the RDF graph syntax. Used in [[grddl|GRDDL]]&lt;br /&gt;
| [http://www.w3.org/TR/grddl/#transformation GRDDL] &lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== notes ===&lt;br /&gt;
*&amp;lt;code&amp;gt;rel=&amp;quot;alternate&amp;quot;&amp;lt;/code&amp;gt; can take further meaning from additional attributes, such as &lt;br /&gt;
** &amp;lt;code&amp;gt;rel=&amp;quot;alternate&amp;quot; lang=&amp;quot;fr&amp;quot;&amp;lt;/code&amp;gt; (French language version of this page)&lt;br /&gt;
** &amp;lt;code&amp;gt;rel=&amp;quot;alternate&amp;quot; media=&amp;quot;print&amp;quot;&amp;lt;/code&amp;gt; (printable version of this page)&lt;br /&gt;
** &amp;lt;code&amp;gt;rel=&amp;quot;alternate&amp;quot; media=&amp;quot;handheld&amp;quot;&amp;lt;/code&amp;gt; (version of the page intended or better for handheld/portable devices like PDAs, cell phones, etc.)&lt;br /&gt;
&lt;br /&gt;
*Synonyms such as &amp;quot;previous&amp;quot;, &amp;quot;toc&amp;quot; are not as widely supported as the main term.&lt;br /&gt;
&lt;br /&gt;
== proposals ==&lt;br /&gt;
A few rel values have been developed as drafts as a result of going through most of the microformats [[process]], and are thus listed here for your serious consideration. You &amp;lt;strong&amp;gt;may use these values&amp;lt;/strong&amp;gt;, and if you find any problems with them please point them out on the respective &amp;quot;issues&amp;quot; page for the rel value.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! summary !! proposed in !! external spec (if any)&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-pronunciation|pronunciation]] || &amp;amp;hellip;indicates that the destination of the 'link' element is a document providing a pronunciation lexicon for speech-synthesis purposes. || [[rel-pronunciation]]&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-directory|directory]] || &amp;amp;hellip;indicates that the destination of the hyperlink is a directory listing containing an entry for the current page. || [[rel-directory]]&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-enclosure|enclosure]] || &amp;amp;hellip;indicates that the destination of that hyperlink is intended to be downloaded and cached. || [[rel-enclosure]] || [http://www.apps.ietf.org/rfc/rfc4287.html RFC4287]&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-home|home]] || &amp;amp;hellip;indicates that the &amp;lt;nowiki&amp;gt;[referenced document]&amp;lt;/nowiki&amp;gt; is the homepage of the site in which the current page appears. || [[rel-home]]&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-payment|payment]] || &amp;amp;hellip;indicates that the destination of the hyperlink provides a way to show or give support (e.g. financial) for the current page|| [[rel-payment]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== HTML5 link type extensions ==&lt;br /&gt;
&lt;br /&gt;
The following values are registered as link type extensions per the [http://www.whatwg.org/specs/web-apps/current-work/multipage/links.html#other-link-types requirements in the WHATWG HTML spec] and the [http://dev.w3.org/html5/spec/links.html#other-link-types requirements in the W3C HTML5 spec]. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Before you register a new value:&lt;br /&gt;
* '''Please check the [[#formats|Formats table]] and DO NOT re-register''' rel values that are already there. Please note that the W3C HTML WG has made a [http://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html Decision] to drop &amp;lt;code&amp;gt;index&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;up&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;first&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;last&amp;lt;/code&amp;gt; from the HTML5 spec itself.&lt;br /&gt;
* '''Please check the [[#dropped|Dropped table]] and DO NOT register''' values that are already there. If you believe a rel value was dropped from another specification without prejudice, please provide link/cite to explicit text/decision stating as such, e.g. the value was merely postponed, or perhaps expected to be spun-out into its own spec from the group developing that specification.&lt;br /&gt;
&lt;br /&gt;
Note that entries in the [[#formats|Formats table]] and entries that are already in HTML5 as built-in keywords are also considered extensions with the &amp;quot;Ratified&amp;quot; status.&lt;br /&gt;
&lt;br /&gt;
Please make sure that registrations added here have all the required data filled in ''including'':&lt;br /&gt;
* &amp;quot;Effect on link&amp;quot;&lt;br /&gt;
* &amp;quot;Effect on a and area&amp;quot; and &lt;br /&gt;
* a link to a spec that documents the keyword ''as an HTML &amp;lt;code&amp;gt;rel&amp;lt;/code&amp;gt; keyword''. (A spec that merely defines the file format of the link target but does not define the &amp;lt;code&amp;gt;rel&amp;lt;/code&amp;gt; keyword for use in HTML is not the kind of spec that is being required here.)&lt;br /&gt;
&lt;br /&gt;
Entries lacking any of the above required data will likely be removed. &lt;br /&gt;
&lt;br /&gt;
Changes to this registry will not be reflected in validators in real time. But validators will typically get automatically updated with the changes within one week or so&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! Keyword&lt;br /&gt;
! Effect on &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt;&lt;br /&gt;
! Effect on &amp;lt;code&amp;gt;a&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;area&amp;lt;/code&amp;gt;&lt;br /&gt;
! Brief description&lt;br /&gt;
! Link to specification&lt;br /&gt;
! Synonyms&lt;br /&gt;
! Status&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-apple-touch-icon|apple-touch-icon]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specify a Webpage Icon for a “Web Clip”, or “touch icon”, for mobile devices (not limited to Apple devices).&lt;br /&gt;
| [http://developer.apple.com/library/safari/#documentation/appleapplications/reference/safariwebcontent/configuringwebapplications/configuringwebapplications.html Apple's Safari Web Content Guide]&lt;br /&gt;
| probably redundant with rel=icon&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-apple-touch-icon-precomposed|apple-touch-icon-precomposed]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specify a Webpage Icon for a “Web Clip”, or “touch icon”, for mobile devices (not limited to Apple devices).&lt;br /&gt;
| [http://developer.apple.com/library/safari/#documentation/appleapplications/reference/safariwebcontent/configuringwebapplications/configuringwebapplications.html Apple's Safari Web Content Guide]&lt;br /&gt;
| probably redundant with rel=icon&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-apple-touch-startup-image|apple-touch-startup-image]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specify a splashscreen for Web apps on iOS Safari &lt;br /&gt;
| [http://developer.apple.com/library/safari/#documentation/appleapplications/reference/safariwebcontent/configuringwebapplications/configuringwebapplications.html Apple's Safari Web Content Guide]&lt;br /&gt;
| maybe redundant with rel=icon with the sizes attribute?&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-attachment|attachment]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| The resource linked to is &amp;quot;attached&amp;quot; to this document, similar to email attachments. Used in WordPress.&lt;br /&gt;
| No formal specification&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[WPVL_PRETTYPHOTO_REL]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Open lightbox with video&lt;br /&gt;
| No formal specification&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-authorization_endpoint|authorization_endpoint]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specify a hosted authorization server&lt;br /&gt;
| [http://indiewebcamp.com/distributed-indieauth  distributed IndieAuth documentation]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-canonical|canonical]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specifies the canonical URL for the current document in order to help avoid duplicate content.&lt;br /&gt;
| [http://en.wikipedia.org/wiki/Canonical_meta_tag Canonical meta tag] [http://www.Google.com/support/webmasters/bin/answer.py?answer=139066#2 Canonicalization at Google Webmaster Central] [http://www.Bing.com/community/site_blogs/b/webmaster/archive/2009/02/12/partnering-to-help-solve-duplicate-content-issues.aspx Microsoft Webmaster Center] [http://www.YSearchBlog.com/2009/02/12/fighting-duplication-adding-more-arrows-to-your-quiver/ Yahoo! Search Blog]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-category|category]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to a category assigned to the current document or post. Implemented by WordPress for indicating a relation between a blog post and a category.&lt;br /&gt;
| [[rel-category]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-component|component]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specify an HTML document that is treated as a component of this document.&lt;br /&gt;
| [https://dvcs.w3.org/hg/webcomponents/raw-file/tip/spec/components/index.html Web Components]&lt;br /&gt;
| &lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-chrome-webstore-item|chrome-webstore-item]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Link tag to declare for app and extensions inline installations hosted in the Chrome Web Store.&lt;br /&gt;
| [https://developers.google.com/chrome/web-store/docs/inline_installation Using Inline Installation]&lt;br /&gt;
| &lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#conformsTo|DCTERMS.conformsTo]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| An established standard to which the described resource conforms. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;lt;nowiki&amp;gt;http://purl.org/dc/terms/&amp;lt;/nowiki&amp;gt;&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
| It may be replaced by the literal value in form of &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.conformsTo&amp;quot; content=&amp;quot;...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#contributor|DCTERMS.contributor]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| An entity responsible for making contributions to the resource. Examples include a person, an organization, or a service. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;lt;nowiki&amp;gt;http://purl.org/dc/terms/&amp;lt;/nowiki&amp;gt;&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
| It may be replaced by the literal value in form of &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.contributor&amp;quot; content=&amp;quot;...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#creator|DCTERMS.creator]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| An entity primarily responsible for making the resource. Examples include a person, an organization, or a service. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;lt;nowiki&amp;gt;http://purl.org/dc/terms/&amp;lt;/nowiki&amp;gt;&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
| It may be replaced by the literal value in form of &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.creator&amp;quot; content=&amp;quot;...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#description|DCTERMS.description]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| An account of the resource. Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource.  &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;lt;nowiki&amp;gt;http://purl.org/dc/terms/&amp;lt;/nowiki&amp;gt;&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
| It may be replaced by the literal value in form of &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.description&amp;quot; content=&amp;quot;...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#hasFormat|DCTERMS.hasFormat]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that is substantially the same as the pre-existing described resource, but in another format.  &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;lt;nowiki&amp;gt;http://purl.org/dc/terms/&amp;lt;/nowiki&amp;gt;&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#hasPart|DCTERMS.hasPart]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that is included either physically or logically in the described resource.  &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;lt;nowiki&amp;gt;http://purl.org/dc/terms/&amp;lt;/nowiki&amp;gt;&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#hasVersion|DCTERMS.hasVersion]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that is a version, edition, or adaptation of the described resource.  &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;lt;nowiki&amp;gt;http://purl.org/dc/terms/&amp;lt;/nowiki&amp;gt;&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#isFormatOf|DCTERMS.isFormatOf]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that is substantially the same as the described resource, but in another format.  &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;lt;nowiki&amp;gt;http://purl.org/dc/terms/&amp;lt;/nowiki&amp;gt;&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#isPartOf|DCTERMS.isPartOf]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource in which the described resource is physically or logically included.  &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;lt;nowiki&amp;gt;http://purl.org/dc/terms/&amp;lt;/nowiki&amp;gt;&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#isReferencedBy|DCTERMS.isReferencedBy]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that references, cites, or otherwise points to the described resource. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;lt;nowiki&amp;gt;http://purl.org/dc/terms/&amp;lt;/nowiki&amp;gt;&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#isReplacedBy|DCTERMS.isReplacedBy]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that supplants, displaces, or supersedes the described resource. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;lt;nowiki&amp;gt;http://purl.org/dc/terms/&amp;lt;/nowiki&amp;gt;&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#isRequiredBy|DCTERMS.isRequiredBy]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that requires the described resource to support its function, delivery, or coherence. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;lt;nowiki&amp;gt;http://purl.org/dc/terms/&amp;lt;/nowiki&amp;gt;&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#isVersionOf|DCTERMS.isVersionOf]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource of which the described resource is a version, edition, or adaptation.	&amp;lt;br /&amp;gt;Changes in version imply substantive changes in content rather than differences in format. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;lt;nowiki&amp;gt;http://purl.org/dc/terms/&amp;lt;/nowiki&amp;gt;&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#license|DCTERMS.license]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A legal document giving official permission to do something with the resource. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;lt;nowiki&amp;gt;http://purl.org/dc/terms/&amp;lt;/nowiki&amp;gt;&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
| It may be replaced by the literal value in form of &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.license&amp;quot; content=&amp;quot;...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#mediator|DCTERMS.mediator]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| An entity that mediates access to the resource and for whom the resource is intended or useful. In an educational context, a mediator might be a parent, teacher, teaching assistant, or care-giver. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;lt;nowiki&amp;gt;http://purl.org/dc/terms/&amp;lt;/nowiki&amp;gt;&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
| It may be replaced by the literal value in form of &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.mediator&amp;quot; content=&amp;quot;...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#publisher|DCTERMS.publisher]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| An entity responsible for making the resource available. Examples include a person, an organization, or a service. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;lt;nowiki&amp;gt;http://purl.org/dc/terms/&amp;lt;/nowiki&amp;gt;&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
| It may be replaced by the literal value in form of &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.publisher&amp;quot; content=&amp;quot;...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#references|DCTERMS.references]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that is referenced, cited, or otherwise pointed to by the described resource. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;lt;nowiki&amp;gt;http://purl.org/dc/terms/&amp;lt;/nowiki&amp;gt;&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#relation|DCTERMS.relation]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;lt;nowiki&amp;gt;http://purl.org/dc/terms/&amp;lt;/nowiki&amp;gt;&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#replaces|DCTERMS.replaces]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that is supplanted, displaced, or superseded by the described resource. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;lt;nowiki&amp;gt;http://purl.org/dc/terms/&amp;lt;/nowiki&amp;gt;&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#requires|DCTERMS.requires]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that is required by the described resource to support its function, delivery, or coherence. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;lt;nowiki&amp;gt;http://purl.org/dc/terms/&amp;lt;/nowiki&amp;gt;&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#rightsHolder|DCTERMS.rightsHolder]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A person or organization owning or managing rights over the resource. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;lt;nowiki&amp;gt;http://purl.org/dc/terms/&amp;lt;/nowiki&amp;gt;&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
| It may be replaced by the literal value in form of &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.rightsHolder&amp;quot; content=&amp;quot;...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#source|DCTERMS.source]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource from which the described resource is derived. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;lt;nowiki&amp;gt;http://purl.org/dc/terms/&amp;lt;/nowiki&amp;gt;&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#subject|DCTERMS.subject]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| The topic of the resource. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;lt;nowiki&amp;gt;http://purl.org/dc/terms/&amp;lt;/nowiki&amp;gt;&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-disclosure|disclosure]]&lt;br /&gt;
| Not allowed&lt;br /&gt;
| External Resource&lt;br /&gt;
| The 'disclosure' Link Relation Type designates a list of patent disclosures or a particular patent disclosure itself made with respect to material for which such relation type is specified.&lt;br /&gt;
| [http://tools.ietf.org/html/draft-yevstifeyev-disclosure-relation The 'disclosure' Link Relation Type]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-discussion|discussion]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to discussion of the current document or post.&lt;br /&gt;
| [[rel-discussion]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dns-prefetch|dns-prefetch]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Tells the browser to perform dns lookup for host names ahead of use.&lt;br /&gt;
| [https://developer.mozilla.org/En/Controlling_DNS_prefetching Mozilla documentation] [http://dev.chromium.org/developers/design-documents/dns-prefetching Google documentation]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-edit|edit]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Tells the browser where the current page can be edited&lt;br /&gt;
| [http://universaleditbutton.org/Registered_MIME_type#Alternate_Linking_Scheme Universal Edit Button Alternate Linking Scheme].  Implemented in at least [http://mediawiki.org MediaWiki].&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-edituri|EditURI]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A blogging auto discovery value, commonly used by WordPress&lt;br /&gt;
| [http://bitworking.org/projects/atom/draft-gregorio-09.html#Edit AtomAPI]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-enclosure|enclosure]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| External Resource&lt;br /&gt;
| Indicates that the referred resource is intended to be downloaded and cached.&lt;br /&gt;
| [[rel-enclosure]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-entry-content|entry-content]]&lt;br /&gt;
| Not allowed&lt;br /&gt;
| External Resource&lt;br /&gt;
| Indicates that the referenced document is an alternative display source for an Internet Explorer Web Slice.&lt;br /&gt;
| [http://msdn.microsoft.com/en-us/library/cc304073(VS.85).aspx#_alternative Web Slice format specification 0.9]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-external|external]]&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Indicates that the referenced document is not part of the same site as the current document.&lt;br /&gt;
| [[rel-external]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-home|home]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to the top level document for the current document. It can be combined with 'alternate' to indicate a feed for the site of the current page.&lt;br /&gt;
| [[rel-home]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-hub|hub]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to a hub that enables registration for notification of updates to the current page.&lt;br /&gt;
| [http://pubsubhubbub.googlecode.com/svn/trunk/pubsubhubbub-core-0.3.html#discovery PubSubHubbub Spec]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-in-reply-to|in-reply-to]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to an original post that the current page is a comment on or reply to.&lt;br /&gt;
| [[rel-in-reply-to]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-index|index]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to a document providing a list of topics with pointers that pertain to the current document.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-indieauth|indieauth]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| the IndieAuth server for the relying party to contact for IndieAuth authentication&lt;br /&gt;
| [http://spec.indieauth.com/ IndieAuth specification]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-issues|issues]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to issues regarding the current document or specification.&lt;br /&gt;
| [[rel-discussion]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-lightbox|lightbox]]&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Img Pop-Up&lt;br /&gt;
| Images with this attribute are displayed in a larger way than embedded in a website (or how you specified it) when clicked (e.g. with installed &amp;quot;Lightbox 2&amp;quot;-Plugin). When adding [group] to rel=&amp;quot;lightbox&amp;quot; all images get a clickable button for next/prev; insert into &amp;lt;code&amp;gt;&amp;amp;lt;a rel=&amp;quot;lightbox[group]&amp;quot;&amp;gt;&amp;amp;lt;img src=&amp;quot;http:example.com/img.jpg&amp;quot;&amp;gt;&amp;amp;lt;/a&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://lokeshdhakar.com/projects/lightbox2/ Lightbox 2] (needs actual specification to be kept in this list, this link is just documentation of one implementation)&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-manifest|manifest]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Imports or links to a manifest&lt;br /&gt;
| [http://w3c.github.io/manifest/#linking W3C Manifest for web application]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-meta|meta]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| External metadata about the HTML document&lt;br /&gt;
| [http://www.w3.org/TR/2004/REC-rdf-syntax-grammar-20040210/#section-rdf-in-HTML W3C's RDF/XML Syntax Specification]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-indieauth|micropub]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| the micropub endpoint for creating new posts&lt;br /&gt;
| [http://indiewebcamp.com/micropub  Micropub scecification]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-openid.delegate|openid.delegate]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| When the page that contains the link is used as an OpenID indentifier, the relying party perform sOpenID 1.1 authentication with the link target as the identifier instead. &lt;br /&gt;
| [http://openid.net/specs/openid-authentication-1_1.html#delegating_authentication OpenID Authentication 1.1]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-openid.server|openid.server]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| The OpenID server for the relying party to contact for OpenID 1.1 authentication&lt;br /&gt;
| [http://openid.net/specs/openid-authentication-1_1.html#anchor4 OpenID Authentication 1.1]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-openid2.local_id|openid2.local_id]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| When the page that contains the link is used as an OpenID indentifier, the relying party perform sOpenID 2.0 authentication with the link target as the identifier instead. &lt;br /&gt;
| [http://openid.net/specs/openid-authentication-2_0.html#rfc.section.7.3.3 OpenID Authentication 2.0]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-openid2.provider|openid2.provider]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| The OpenID server for the relying party to contact for OpenID 2.0 authentication&lt;br /&gt;
| [http://openid.net/specs/openid-authentication-2_0.html#rfc.section.7.3.3 OpenID Authentication 2.0]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-p3pv1|p3pv1]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| References a machine-readable privacy policy description in the P3P format&lt;br /&gt;
| [http://www.w3.org/TR/P3P/#syntax_link P3P spec]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-pgpkey|pgpkey]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Associates a PGP key with a Web page so that the Web page URL can be used as the commenter's URL in PGP-signed blog comments and the blogging system receiving the comment can fetch the key and verify the signature as belonging to the owner of the URL.&lt;br /&gt;
| [http://golem.ph.utexas.edu/~distler/blog/archives/000320.html PGP-Signed Comments]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-pingback|pingback]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| gives the address of the pingback server that handles pingbacks to the current document&lt;br /&gt;
| [http://www.hixie.ch/specs/pingback/pingback Pingback]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-prerender|prerender]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| External Resource&lt;br /&gt;
| Prerenders the Web page targeted by the link including running it scripts.&lt;br /&gt;
| [[rel-prerender]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-profile|profile]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Contextual External Resource &lt;br /&gt;
| indicate[s] that the destination of that hyperlink is a metadata profile (e.g. an [[XMDP]] profile) for the current page or portion thereof. See also [[xmdp-brainstorming]].&lt;br /&gt;
| [http://microformats.org/wiki/rel-profile rel-profile]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-publisher|publisher]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| External Resource &lt;br /&gt;
| Indicates that the referenced document is a metadata profile (e.g., a social-media/real-name profile such as a Google+ profile) for the publisher of the current page, or some portion of the current page.&lt;br /&gt;
| [https://support.google.com/plus/answer/1713826?hl=en Google help page]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-rendition|rendition]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| External Resource&lt;br /&gt;
| Indicates some example rendering, interpretation, or depiction of the source. User agents may choose to execute, display, or render the target in-place; or navigate to the target.&lt;br /&gt;
| [http://www.globalmentor.com/specs/html-rel-rendition/ HTML rel rendition]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-reply-to|reply-to]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| indicates any mailbox(es) (i.e. email addresses) to which responses are to be sent. ''Note: this is distinct from the 'in-reply-to' value which refers to the originating document, not to the address where comments should be sent.&lt;br /&gt;
| [http://tools.ietf.org/html/rfc2822 RFC2822] (originally [http://tools.ietf.org/html/rfc822#section-4.4.3 RFC822])&lt;br /&gt;
|&lt;br /&gt;
| ratified&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-service|service]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Atom Publishing Protocol editing service autodiscovery.&lt;br /&gt;
| [http://wiki.whatwg.org/wiki/ServiceRelExtension Documentation on the WHATWG wiki]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-shortlink|shortlink]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specifies the preferred shortened URL for the page.&lt;br /&gt;
| [http://code.google.com/p/shortlink/wiki/Specification shortlink spec]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sidebar|sidebar]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Indicates that the referenced document is intended to be shown in a secondary browsing context.&lt;br /&gt;
| [[rel-sidebar]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sitemap|sitemap]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Provides a link to an XML document describing the layout of the site.&lt;br /&gt;
| [[rel-sitemap]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-subresource|subresource]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| An external resource intended for use within the current page.&lt;br /&gt;
| [http://www.chromium.org/spdy/link-headers-and-server-hint/link-rel-subresource Chromium documentation]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-syndication|syndication]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to a page which is a syndicated copy of the current page.&lt;br /&gt;
| [[rel-syndication]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-timesheet|timesheet]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Applies a timesheet to the document.&lt;br /&gt;
| [http://www.w3.org/TR/timesheets/#smilTimesheetsNS-Elements-Timesheet non-normative section in the Timesheet spec]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-token_endpoint|token_endpoint]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specify an HTTP endpoint that micropub clients can use to obtain an access token given an authorization code&lt;br /&gt;
| [http://indiewebcamp.com/token-endpoint token endpoint documentation]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-webmention|webmention]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| gives the address of the webmention endpoint that handles webmentions to the current document&lt;br /&gt;
| [http://webmention.org/ WebMention specification]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-widget|widget]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| External Resource&lt;br /&gt;
| Autodiscovery for W3C widgets&lt;br /&gt;
| [http://dev.w3.org/2006/waf/widgets/Overview.html#linking-to-a-widget-package-from-a-html- non-normative section in the Widget packaging spec]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-wlwmanifest|wlwmanifest]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Windows Live Writer manifest autodiscovery&lt;br /&gt;
| [http://msdn.microsoft.com/en-us/library/bb463263.aspx documentation on MSDN]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-image_src|image_src]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specify a Webpage Icon for use by Facebook, Yahoo, Digg, etc.&lt;br /&gt;
| Unknown, but see for instance [http://www.niallkennedy.com/blog/2009/03/enhanced-social-share.html this]&lt;br /&gt;
| probably redundant with rel=icon&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-cmis-acl|http://docs.oasis-open.org/ns/cmis/link/200908/acl]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| External Resource&lt;br /&gt;
| Identifies the resource containing a CMIS ACL document for the link context&lt;br /&gt;
| [http://docs.oasis-open.org/cmis/CMIS/v1.0/cs01/cmis-spec-v1.0.html#_Toc243905525 CMIS 1.0, Section 3.4.3.4]&lt;br /&gt;
| &lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-stylesheet/less|stylesheet/less]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Less CSS framework stylesheets.&lt;br /&gt;
| [http://lesscss.org/#-client-side-usage Less CSS usage]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== brainstorming ==&lt;br /&gt;
Several rel values are being brainstormed as potential microformats and are thus listed here. If you find you have a use for such semantics in real world examples, &amp;lt;strong&amp;gt;consider trying out&amp;lt;/strong&amp;gt; these values and provide feedback on the respective brainstorming page(s) with your results and experiences.&lt;br /&gt;
&lt;br /&gt;
You may list new proposed rel values here, and even better if you can list and link to POSH uses in the wild.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! summary !! brainstormed in and usage in the wild&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-accessibility|accessibility]] || indicate[s] that the destination of that hyperlink contains accessibility information for the current page. || [http://www.brucelawson.co.uk/2009/rel-accessibility/ blog post] which itself uses the rel value in a &amp;amp;lt;link&amp;amp;gt; tag in the head of the document.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-author|author]] || indicate[s] that the destination of that hyperlink represents the author of the current page. Combines with [[rel-me|rel-me]] to chain authorship information. || Google has said it will index rel-Author in this [http://googlewebmastercentral.blogspot.com/2011/06/authorship-markup-and-web-search.html blog post], with further [http://www.google.com/support/webmasters/bin/answer.py?answer=1229920 discussion of the rel-me connection] See also [http://dev.w3.org/html5/spec/Overview.html#link-type-author the HTML5 spec]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-bibliography|bibliography]] || indicate[s] that the destination of that hyperlink is a bibliography for the current page. || [http://microformats.org/discuss/mail/microformats-discuss/2007-October/010863.html mailing list post, 2007-10-15]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-cite|cite]] || indicate[s] that the destination of that hyperlink is an authoritative source or a precedent to the current page. || [[distributed-conversation-brainstorming]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-group|group]] || the referenced document represents a group to which the person represented by the current document belongs || [[group-brainstorming]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-jslicense|jslicense]]&lt;br /&gt;
| Refers to a document with JavaScript source code and license information (also called a [http://www.gnu.org/licenses/javascript-labels.html JavaScript License Web Labels] page). We might want choose a keyword for this that is more general -- there are many situations besides JavaScript in which it is desirable or required by license agreements (e.g., GNU GPL) to make an offer of both the source code and a copy of a license when distributing object code versions of a given work.&lt;br /&gt;
|* Brainstorming page -- thoughts on the name?&lt;br /&gt;
* Ex. [http://www.eff.org EFF.org] (on &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt;) &lt;br /&gt;
* Ex. [http://www.fsf.org FSF.org] (on &amp;lt;code&amp;gt;a&amp;lt;/code&amp;gt;)&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;span id=&amp;quot;longdesc&amp;quot;&amp;gt;[[rel-longdesc|longdesc]]&amp;lt;/span&amp;gt; || Alternative to the img longdesc attribute, for use on visible links || [http://www.google.com/search?q=rel%3D%22longdesc%22 Google search for rel=longdesc in the wild] shows many sources of proposals. Please edit this to list the earliest and perhaps most recent/comprehensive proposal. No known real world POSH usage in the wild yet.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-map|map]] || Link to a map. Possibly embedded within an adr, hCard, geo or hCalendar. Parsers {{may}} attempt to parse the URL if it is a link to a known map site (e.g. Geohash, Google Maps, Multimap) and extract co-ordinates and other useful data. || (to [[User:TobyInk|TobyInk]] by email)&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-member|member]] || the referenced document represents a member of the group represented by the current document || [[group-brainstorming]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-m_PageScroll2id|m_PageScroll2id]] || JS to scroll to a defined ID || [[group-brainstorming]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-preconnect|preconnect]] || indicates an origin that will be used to fetch required resources. Initiating an early connection, which includes the DNS lookup, TCP handshake, and optional TLS negotiation, allows the user agent to mask the high costs of connection establishment latency.|| [https://igrigorik.github.io/resource-hints/#preconnect resource hints draft]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-prefetch|prefetch]] || indicates the URL and content-type of a resource that is likely to be a required resource when the next action or navigation is triggered. Initiating an early fetch allows the user agent to mask the request latency of the resource and make it available sooner to the application.|| [https://igrigorik.github.io/resource-hints/#prefetch resource hints draft]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-preload|preload]] || indicates the URL and content-type of a resource that should be fetched as early as possible by the user agent. Initiating an early fetch allows the user agent to mask the request latency of the resource and make it available sooner to the application.|| [https://igrigorik.github.io/resource-hints/#preload resource hints draft]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-prerender|prerender]] || indicates the URL of the next navigation target. Initiating a prerender allows the user agent to deliver an instant navigation experience: the user agent downloads the top-level resource and its assets, and performs all of the processing steps required to show the page without actually showing it to the user.|| [https://igrigorik.github.io/resource-hints/#prerender resource hints draft]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-profile|profile]] || indicate[s] that the destination of that hyperlink is a metadata profile (e.g. an [[XMDP]] profile) for the current page or portion thereof || [[xmdp-brainstorming]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-shortlink|shortlink]] || the referenced document represents the current document but with a shorter URL || [http://samj.net/2009/04/introducing-relshort-better-alternative.html blog post]&lt;br /&gt;
|-&lt;br /&gt;
| source || the referenced document represents the source code for the current document or project || [[source-brainstorming]] [http://adactio.com/journal/6667/ blog post]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| vcalendar-parent || link from an event to a containing event || [[User:TobyInk/hcalendar-1.1|hCalendar 1.1 draft]]&lt;br /&gt;
|-&lt;br /&gt;
| vcalendar-child || link from an event to a contained event || [[User:TobyInk/hcalendar-1.1|hCalendar 1.1 draft]]&lt;br /&gt;
|-&lt;br /&gt;
| vcalendar-sibling || link from an event to a related event with the same container || [[User:TobyInk/hcalendar-1.1|hCalendar 1.1 draft]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-status|status]] || the referenced document represents the status (or source of status updates) for the author of this document || [http://monkinetic.com/2009/11/24/status-autodiscovery-relstatus.html blog post]&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== more brainstorming ===&lt;br /&gt;
See also:&lt;br /&gt;
* [[genealogy-brainstorming]] for some thoughts on possible additional values for family relationships (use existing [[XFN]] [[rel-parent|parent]], [[rel-child|child]], [[rel-sibling|sibling]], [[rel-spouse|spouse]], [[rel-kin|kin]] values first though)&lt;br /&gt;
* [[xpn-brainstorming]] for some thoughts on possible additional values for professional relationships (use existing [[XFN]] [[rel-co-worker|co-worker]], [[rel-colleague|colleague]] values first though)&lt;br /&gt;
&lt;br /&gt;
== POSH usage ==&lt;br /&gt;
There are numerous rel values used as [[POSH]], both in the wild, whose origins are not necessarily known, nor are their meanings consistent.  There are also numerous rel values from external proposals of varying degrees of merit.  It is useful to document their existence and summarize their implied meanings/usage intent as research that may be used to perhaps take one or more of them thru the microformats [[process]] if there is both sufficient interest and sufficient in the wild usage.&lt;br /&gt;
&lt;br /&gt;
Note: If a value is missing from this table, it may have either already been promoted by writing it up as a proposal, or demoted by being explicitly dropped. Please check the other tables first before adding to this table.&lt;br /&gt;
&lt;br /&gt;
Note: this list is incomplete, please help complete it from the following sources:&lt;br /&gt;
&lt;br /&gt;
External sources: &lt;br /&gt;
* [http://developer.mozilla.org/about/meta Meta Information in DevMo Docs] (DevMo)&lt;br /&gt;
* [http://wiki.mozilla.org/Microsummaries Microsummary]&lt;br /&gt;
* [http://lachy.id.au/dev/markup/specs/wclr/ Web Communication Link Relationships] (WCLR)&lt;br /&gt;
* [http://www.w3.org/MarkUp/Relationships.html W3C Link Relationship values draft] (LRdraft) - from a draft of the HTML spec circa 1991. &lt;br /&gt;
* [http://www.whatwg.org/specs/web-apps/current-work/multipage/section-links.html#linkTypes HTML5 draft] '''Liable to change'''&lt;br /&gt;
* [http://wiki.foaf-project.org/Autodiscovery FOAF Project Wiki: Autodiscovery] (FOAF)&lt;br /&gt;
* [http://www.apps.ietf.org/rfc/rfc4685.html RFC4685]&lt;br /&gt;
* [http://googlewebmastercentral.blogspot.com/2009/02/specify-your-canonical.html Google Blog]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! summary !! origin !! proposal(s)&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-archive|archive]] || index of archived entries || unknown, perhaps Wordpress open source blogging software || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-archives|archives]] || Provides a link to a collection of records, documents, or other materials of historical interest. ||  || HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|[[rel-author|author]]||see brainstorming above for suggested use by google||unknown || DevMo / HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-canonical|canonical]] || To help search engines disambiguate the same page with multiple representations || Google || [http://googlewebmastercentral.blogspot.com/2009/02/specify-your-canonical.html Google]/[http://www.bing.com/community/blogs/webmaster/archive/2009/02/12/partnering-to-help-solve-duplicate-content-issues.aspx Microsoft]/[http://www.ysearchblog.com/2009/02/12/fighting-duplication-adding-more-arrows-to-your-quiver/ Yahoo!], [http://blog.ask.com/2009/02/ask-is-going-canonical.html Ask Jeeves]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-comment|comment]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-contribution|contribution]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-edituri|EditURI]] &lt;br /&gt;
| Location of the xml-rpc gateway for a Wordpress install that allows external programs to add, edit and delete posts. Used by &amp;quot;[http://codex.wordpress.org/Weblog_Client WordPress blog client]&amp;quot; software for automating posting and updating blog content from your desktop. || Seen in [http://www.wordpress.org/ WordPress], e.g. [http://www.tom-watson.co.uk/].  || Description stubbed in [[rel-edituri]].&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-endorsed|endorsed]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-fan|fan]] || xxxx. || &amp;amp;hellip; || [[hcard-user-profile-authoring]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-feed|feed]] || Gives the address of a syndication feed for the current document. || &amp;amp;hellip; || WCLR/ HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-footnote|footnote]] || Location of the footnote on a link to a footnote. || Markdown preprocessors such as [http://maruku.rubyforge.org/ Maruku] || HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-icon|icon]] || Imports an icon to represent the current document. (Allowed in &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt; only) || [http://dev.w3.org/html5/spec-LC/links.html#rel-icon HTML5] || WCLR/HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-kinetic-stylesheet|kinetic-stylesheet]] || Imports a [http://kssproject.org/ KSS] 'kinetic stylesheet' to bind dynamic behavior to elements || Used in the [http://plone.org Plone] Content Management System || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-lightbox|lightbox]] || Hook - Indicates that following the link will trigger a &amp;quot;lightbox&amp;quot; script (Allowed in &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt; only) || ([http://www.google.co.uk/search?q=rel%3D%22lightbox%22 Google search for rel=lightbox in the wild]) || &amp;amp;hellip; &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-lightbox|lightbox[group_name]]] || Used by lightbox scripts to group different sets of images together.  Images from one group will not appear in another group's lightbox.  See also &amp;quot;lightbox&amp;quot;. || [http://lokeshdhakar.com/projects/lightbox2/#how Lightbox 2] || &amp;amp;hellip; &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-prettyPhoto|prettyPhoto]] || See also &amp;quot;lightbox&amp;quot; || ([http://www.google.fr/search?q=rel%3D%22prettyphoto%22 Google search for rel=&amp;quot;prettyphoto&amp;quot; in the wild]) || &amp;amp;hellip; &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-clearbox|clearbox]] || See also &amp;quot;lightbox&amp;quot; || ([http://www.google.fr/search?q=rel%3D%22clearbox%22 Google search for rel=&amp;quot;clearbox&amp;quot; in the wild]) || &amp;amp;hellip; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-made|made]] || &amp;amp;hellip; || &amp;amp;hellip; || LRdraft&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-meta|meta]] || &amp;amp;hellip; ||  [http://www.w3.org/TR/1999/REC-rdf-syntax-19990222/#transport 1999 W3C RDF syntax REC] || FOAF&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-microsummary|microsummary]]|| &amp;amp;hellip; || &amp;amp;hellip; ||[http://wiki.mozilla.org/Microsummaries Microsummary], be aware of: [[page-summary-formats#Issues_2|microsummary issues]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-noreferrer|noreferrer]] || indicates that no referrer information is to be leaked when following the link. || [http://dev.w3.org/html5/spec-LC/links.html#rel-noreferrer HTML5] || HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-openid-delegate|openid.delegate]] || &amp;amp;hellip; || ([http://www.google.co.uk/search?q=%22rel%3Dopenid%22 Google search for rel=openid.* in the wild]) || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-openid-server|openid.server]] || &amp;amp;hellip; || ([http://www.google.co.uk/search?q=%22rel%3Dopenid%22 Google search for rel=openid.* in the wild]) || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-permalink|permalink]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-pgpkey|pgpkey]] || (see also rel-publickey) || &amp;amp;hellip; || [http://golem.ph.utexas.edu/~distler/blog/archives/000320.html], [http://golem.ph.utexas.edu/~distler/blog/archives/000325.html]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-pingback|pingback]] || Gives the address of the pingback server that handles pingbacks to the current document. (Allowed in &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt; only) || &amp;amp;hellip; || WCLR/ HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-popover|popover]] || Used by a JS widget to display a large, descriptive tooltip. || [http://twitter.github.com/bootstrap Twitter's Bootstrap] [http://twitter.github.com/bootstrap/javascript.html#popovers Popover.js] || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-prefetch|prefetch]] || Specifies that the target resource should be pre-emptively cached. (Allowed in &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt; only) || &amp;amp;hellip; || HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-privacy|privacy]] || Specifies that the target resource is the privacy policy. || &amp;amp;hellip; || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-publickey|publickey]] || (see also rel-pgpkey) || &amp;amp;hellip; || [http://rasterweb.net/raster/2002/12/12/20021212072812/]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-referral|referral]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-related|related]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-replies|replies]] || indicates a continued thread || unknown || [http://www.apps.ietf.org/rfc/rfc4685.html RFC4685]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-resource|resource]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-search|search]] || &amp;amp;hellip; || unknown || unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sitemap|sitemap]] || Links to a site map document. || &amp;amp;hellip; || http://www.sitemaps.org/&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sponsor|sponsor]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-tooltip|tooltip]] || Used by a JS widget to display a tooltip similar (though more customizable) to what is shown by browsers if the 'title' attribute is present. || [http://twitter.github.com/bootstrap Twitter's Bootstrap] [http://twitter.github.com/bootstrap/javascript.html#tooltips Tooltip.js] (and likely other JS tools) || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-trackback|trackback]] || &amp;amp;hellip; || unknown, perhaps open source Movable Type blogging software || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-unendorsed|unendorsed]] || (probably redundant to [[rel-nofollow|nofollow]]) || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-user|user]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-wlwmanifest|wlwmanifest]] || Used by &amp;quot;[http://explore.live.com/windows-live-writer Windows Live Writer],&amp;quot; a Microsoft [http://codex.wordpress.org/Weblog_Client blog client] for automating posting and updating blog content from your desktop. || Seen in [http://www.wordpress.org/ WordPress], e.g. [http://www.tom-watson.co.uk/]. Similar values are probably used by other blog content management systems as well. || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== WCLR ===&lt;br /&gt;
&lt;br /&gt;
The WCLR proposal is described by its author (in e-mail, 2007-09-25) as:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&amp;amp;hellip;now effectively obsolete, since HTML5 and Microformats cover all the worthwhile relationships in that already.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
These are [http://www.whatwg.org/specs/web-apps/current-work/multipage/section-links.html#linkTypes covered by HTML5 already]:&lt;br /&gt;
&lt;br /&gt;
* permalink -&amp;gt; bookmark&lt;br /&gt;
* archive -&amp;gt; archives&lt;br /&gt;
* feed&lt;br /&gt;
* pingback&lt;br /&gt;
* unendorsed -&amp;gt; nofollow&lt;br /&gt;
&lt;br /&gt;
The rest now seem unnecessary.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Nonetheless, there may be some mileage in using them in microformats, at least until HTML5 is widely available.&lt;br /&gt;
&lt;br /&gt;
== Dublin Core ==&lt;br /&gt;
In the past, Dublin Core values have been added to this page in the table about HTML5 features, but no examples, nor an actual specification explicitly stating how the value(s) should be used in HTML could be found. The linked specifications below have been updated so we should start considering Dublin Core values accordingly.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! summary !! source&lt;br /&gt;
|-&lt;br /&gt;
| schema.DC || a specification of all metadata terms maintained by the Dublin Core Metadata Initiative, with regard to the fifteen terms of the Dublin Core Metadata Element Set already published || [http://www.dublincore.org/documents/dcq-html/ Dublin Core]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| schema.DCTERMS || a specification of all metadata terms maintained by the Dublin Core Metadata Initiative, reflecting the changes described more fully in the 2012 document &amp;quot;Maintenance changes to DCMI Metadata Terms&amp;quot; [http://dublincore.org/usage/decisions/2012/dcterms-changes/] || [http://www.dublincore.org/documents/dcq-html/ Dublin Core]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
'''Issues need updating given new information from linked resources.'''&lt;br /&gt;
&lt;br /&gt;
Notes:&lt;br /&gt;
* Dublin Core. This search may help: [http://www.google.co.uk/search?as_q=rel%3Dschema.*&amp;amp;hl=en&amp;amp;num=10&amp;amp;btnG=Google+Search&amp;amp;as_epq=&amp;amp;as_oq=&amp;amp;as_eq=&amp;amp;lr=&amp;amp;as_ft=i&amp;amp;as_filetype=&amp;amp;as_qdr=all&amp;amp;as_occt=any&amp;amp;as_dt=i&amp;amp;as_sitesearch=http%3A%2F%2Fdublincore.org&amp;amp;as_rights=&amp;amp;safe=images]. &lt;br /&gt;
** '''examples from that search only use invisible &amp;lt;code&amp;gt;&amp;amp;lt;link href&amp;amp;gt;&amp;lt;/code&amp;gt; element'''. At first glance it appears the results from the search show only uses with the invisible &amp;lt;code&amp;gt;&amp;amp;lt;link href&amp;amp;gt;&amp;lt;/code&amp;gt; element which is not ideal for content relationships.  Content relationships should be user visible and thus uses with &amp;lt;code&amp;gt;&amp;amp;lt;a href&amp;amp;gt;&amp;lt;/code&amp;gt; are strongly preferred.  &lt;br /&gt;
*** [http://www.ietf.org/rfc/rfc2731.txt RFC2731] defines &amp;lt;code&amp;gt;rel=&amp;quot;schema.AC&amp;quot;&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;rel=&amp;quot;schema.RC&amp;quot;&amp;lt;/code&amp;gt; with the pattern &amp;lt;code&amp;gt;rel=&amp;quot;schema.PREFIX&amp;quot;&amp;lt;/code&amp;gt; as a syntax for defining namespaces for use in meta[@name], *[@rel], *[@rev] and (as per eRDF) *[@class] attributes. A link to a Dublin Core metadata schema is generally not suitable for end users, so &amp;lt;code&amp;gt;&amp;amp;lt;link href&amp;amp;gt;&amp;lt;/code&amp;gt; appears to be more appropriate than &amp;lt;code&amp;gt;&amp;amp;lt;a href&amp;amp;gt;&amp;lt;/code&amp;gt; for those that use Dublin Core metadata schemas.&lt;br /&gt;
*** The scheme proposed above provides metadata namespace declarations. As described by DCMI specifications, such indications '''cannot''' be provided w/o a suitable namespace. In order to give complete pieces of information, the correct description set must be: &amp;lt;code&amp;gt;&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot;&amp;amp;gt;&amp;lt;/code&amp;gt; (for the namespace declaration, followed by) &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.&amp;lt;nowiki&amp;gt;[element]&amp;lt;/nowiki&amp;gt;&amp;quot; content=&amp;quot;&amp;lt;nowiki&amp;gt;[element.value]&amp;lt;/nowiki&amp;gt;&amp;quot;&amp;amp;gt;&amp;lt;/code&amp;gt; for related elements. &lt;br /&gt;
**** Note: [http://purl.org/dc/terms/ schema.DCTERMS] is conventionally related to an upgraded elements list than [http://purl.org/dc/elements/1.1/ schema.DC] and should be preferred as rel values. Both are discussed here for subject completeness) &lt;br /&gt;
** '''proposal to use in content currently only theoretical'''. Thus unfortunately the use of Dublin Core in user visible content like &amp;lt;code&amp;gt;&amp;amp;lt;a href&amp;amp;gt;&amp;lt;/code&amp;gt; appears to be strictly theoretical. See [http://microformats.org/discuss/mail/microformats-discuss/2008-January/011445.html microformats-discuss/2008-January/011445.html] for a proposal to use Dublin Core in user visible content.&lt;br /&gt;
*** '''recent improvements'''. DCMI solves some trouble concerning metadata through the ''description set model''. Some of these informations cannot currently be provided in any standard ways other than DC, namely dates, validity and periodicity. Following this public bug report ([https://www.w3.org/Bugs/Public/show_bug.cgi?format=multiple&amp;amp;id=22520]), the correct namespace declaration for DC and DCTERMS metadata are now considered valid HTML code. We '''must''' encourage this practice both for internal usefulness and for shared practices. &lt;br /&gt;
&lt;br /&gt;
* The Dublin Core document [http://dublincore.org/documents/dc-html/ &amp;quot;Expressing Dublin Core metadata using HTML/XHTML meta and link elements&amp;quot;] is a specification for, and gives examples of, both &amp;lt;link rel=&amp;quot;schema.DC&amp;quot; href=&amp;quot;http://purl.org/dc/elements/1.1/&amp;quot;&amp;gt; and &amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot;&amp;gt;. Note that Dublin Core encourages the use of DCTERMS elements over DC. A list of projects which use Dublin Core metadata is maintained [http://dublincore.org/projects/ here].&lt;br /&gt;
* [http://dublincore.org/documents/dc-html/ &amp;quot;Expressing Dublin Core metadata using HTML/XHTML meta and link elements&amp;quot;] also includes examples of &amp;lt;link rel=&amp;quot;DCTERMS.[element]&amp;quot; href=&amp;quot;&amp;quot;&amp;gt;, where [element] = subject, isReferencedBy, creator, and publisher. The &amp;lt;link&amp;gt; tag is used instead of the &amp;lt;meta&amp;gt; tag whenever the content is a URL. (Note that this use is different from, but related to, &amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;quot;&amp;gt;.) Potentially, ''any'' of the 55 DCTERMS elements could be used in this way, and this could include use in HTML 5.&lt;br /&gt;
** As said before, HTML5 validators now allow the use of &amp;lt;code&amp;gt;&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot;&amp;amp;gt;&amp;lt;/code&amp;gt; for namespace declarations.&lt;br /&gt;
&lt;br /&gt;
* According to DCMI specification linked above, as well as [http://dublincore.org/documents/dc-html/ &amp;quot;Expressing Dublin Core metadata using HTML/XHTML meta and link elements&amp;quot;] documentation, HTML5 @rel attribute proposed values table has been updated. It now includes a subset of DCMI ''/terms/'' namespace properties, more specifically those whose value can (or must) be logically expressed by a resource, so that the &amp;quot;href&amp;quot; attribute value becomes a non-literal value surrogate referring to the resource itself.&lt;br /&gt;
** Elements from ''/elements/1.1/'' namespace have not been included on purpose. According to [http://wiki.dublincore.org/index.php/FAQ/DC_and_DCTERMS_Namespaces &amp;quot;FAQ/DC and DCTERMS Namespaces&amp;quot;], the old namespace is maintained for legacy purposes only and it is not as suitable for non-literal values as the ones denoted by &amp;lt;code&amp;gt;&amp;amp;lt;link&amp;gt;&amp;lt;/code&amp;gt; elements.&lt;br /&gt;
&lt;br /&gt;
== Use with HTTP Link Header ==&lt;br /&gt;
You can also use any of the rel values (that are allowed for link elements) with HTTP Link Headers, &lt;br /&gt;
&lt;br /&gt;
Example: returning a Javascript file with a license (since JS itself has no way to indicate a license)&lt;br /&gt;
&amp;lt;source lang=text&amp;gt;&lt;br /&gt;
Link: &amp;lt;http://creativecommons.org/publicdomain/zero/1.0/&amp;gt;; rel=&amp;quot;license&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For multiple licenses (e.g. CC-SA and GPL), simply use multiple &amp;lt;code&amp;gt;Link:&amp;lt;/code&amp;gt; headers.&lt;br /&gt;
&amp;lt;source lang=text&amp;gt;&lt;br /&gt;
Link: &amp;lt;http://creativecommons.org/licenses/by-sa/3.0/&amp;gt;; rel=&amp;quot;license&amp;quot;&lt;br /&gt;
Link: &amp;lt;http://www.gnu.org/licenses/gpl.html&amp;gt;; rel=&amp;quot;license&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Example: similarly, linking to a copyright statement for an image:&lt;br /&gt;
&amp;lt;source lang=text&amp;gt;&lt;br /&gt;
Link: &amp;lt;http://example.org/copyright.html&amp;gt;; rel=&amp;quot;copyright&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
or providing a brief inline copyright statement:&lt;br /&gt;
&amp;lt;source lang=text&amp;gt;&lt;br /&gt;
Link: &amp;lt;data:text/plain;charset=utf-8,Copyright 2013 ExampleCo, All Rights Reserved.&amp;gt;; rel=&amp;quot;copyright&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== unspecified ==&lt;br /&gt;
Some rel values have been added to this page perhaps in one of the tables above, but no examples, nor an actual specification explicitly stating that the value(s) should be used in the HTML 'rel' attribute could be found. They are listed here in the hopes someone can discover more specific/precise URLs to examples or specifications about them (preferably both).  Until such precise URLs to examples/specs are provided, the values can be treated as they are purely theoretical and thus of little interest.&lt;br /&gt;
&lt;br /&gt;
A simple list here is sufficient.&lt;br /&gt;
&lt;br /&gt;
== non HTML rel values ==&lt;br /&gt;
There are markup languages other than HTML that also have a rel attribute, often based upon the HTML rel attribute.&lt;br /&gt;
It is useful to document some of these other languages and their rel values for both reference purposes, and to provide  background research for the possible development and re-use of these values in HTML, as [[poshformats]] or [[microformats]]&lt;br /&gt;
&lt;br /&gt;
Sources:&lt;br /&gt;
* [[Atom]] [[RFC4287]] specification. &lt;br /&gt;
* See http://www.iana.org/assignments/link-relations.html for more.&lt;br /&gt;
* See [http://amundsen.com/media-types/maze/format/#link-relations Maze+XML]&lt;br /&gt;
* See [http://amundsen.com/media-types/collection/format/#link-relations Collection+JSON]&lt;br /&gt;
* See [http://www.opensearch.org/Specifications/OpenSearch/1.1#Url_rel_values OpenSearch]&lt;br /&gt;
* See [http://tools.ietf.org/html/rfc6861 The Create-Form and Edit-Form Link Relations (RFC6861)]&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! summary&amp;lt;br /&amp;gt;(from the relevant specification where possible)) !! defining specification&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| self&lt;br /&gt;
| From http://www.ietf.org/rfc/rfc4287.txt : &amp;lt;blockquote&amp;gt;The value &amp;quot;self&amp;quot; signifies that the IRI in the value of the href attribute identifies a resource equivalent to the containing element.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
| [[Atom]] http://www.ietf.org/rfc/rfc4287.txt&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| http://gdata.youtube.com/schemas/2007#in-reply-to || See http://code.google.com/apis/youtube/2.0/developers_guide_protocol_comments.html || YouTube extension to Atom&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| collection || Refers to a resource which represents a collection of which the current resource is a member.&lt;br /&gt;
&lt;br /&gt;
When used in the Maze+XML media type, the associated URI returns the available collection of mazes.&lt;br /&gt;
  || Maze+XML, Collection+JSON, OpenSearch&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| east || Refers to a resource to the &amp;quot;east&amp;quot; of the current resource.&lt;br /&gt;
&lt;br /&gt;
When used in the Maze+XML media type, the associated URI points to a neighboring cell resource to the east in the active maze.&lt;br /&gt;
&lt;br /&gt;
 || Maze+XML&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| exit || Refers to a resource that represents the exit or end of the current client actvity or process.&lt;br /&gt;
&lt;br /&gt;
When used in the Maze+XML media type, the associated URI points to the final exit resource of the active maze.&lt;br /&gt;
&lt;br /&gt;
 || Maze+XML&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| north || Refers to a resource that is &amp;quot;north&amp;quot; of the current resource.&lt;br /&gt;
&lt;br /&gt;
When used in the Maze+XML media type, the associated URI points to a neighboring cell resource to the north in the active maze.&lt;br /&gt;
&lt;br /&gt;
 || Maze+XML&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| south || Refers to a resource that is &amp;quot;south&amp;quot; of the current resource.&lt;br /&gt;
&lt;br /&gt;
When used in the Maze+XML media type, the associated URI points to a neighboring cell resource to the south in the active maze.&lt;br /&gt;
&lt;br /&gt;
 || Maze+XML&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-via|via]] || Identifies a resource that is the source of the information in the context. ||  Atom 1.0 Syndication format (RFC 4287)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| west || Refers to a resource that is &amp;quot;west&amp;quot; of the current resource.&lt;br /&gt;
&lt;br /&gt;
When used in the Maze+XML media type, the associated URI points to a neighboring cell resource to the west in the active maze.&lt;br /&gt;
&lt;br /&gt;
 || Maze+XML&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| item || The target IRI points to a resource that is a member of a collection represented by the context IRI. || Collection+JSON&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| create-form || When included in a resource, the &amp;quot;create-form&amp;quot; link relation MAY identify a target resource that represents the form to append a new member to the link context. || See [http://tools.ietf.org/html/rfc6861 The Create-Form and Edit-Form Link Relations (RFC6861)]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| edit-form || When included in a resource, the &amp;quot;edit-form&amp;quot; link relation identifies a target resource that represents the form for editing associated resource. || See [http://tools.ietf.org/html/rfc6861 The Create-Form and Edit-Form Link Relations (RFC6861)]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| lightframe || Opens the target in a lightbox. On inclusion it provides a simple target the lightframe and loads the content in a lightbox effect || Lightbox&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| superbox[image] || jQuery Superbox! is a script which allows you display windows with the lightbox effect. || superbox&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| wp-video-lightbox || wp-video-lightbox! is a rel to anchor tag script display videos with the lightbox effect. || wp-video-lightbox&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| youtube || Opens the target youtube video in using the Swipebox Plugin || Swipebox&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| shadowbox || shadowbox is a jQuery script for images displaying with the &amp;quot;lightbox&amp;quot; effects. || shadowbox&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| permission || When included in a resource, the &amp;quot;permission&amp;quot; link relation MAY identify a target resource that represents the list of entities that can access or modify the resource in the link context. || See [http://cdoc.io/spec.html#permission-link-relation Collection Document Media Type Specification]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| version-history&lt;br /&gt;
| When included on a versioned resource, this link points to a resource containing the version history for this resource.&lt;br /&gt;
| [http://tools.ietf.org/html/rfc5829 RFC 5829]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| latest-version&lt;br /&gt;
| When included on a versioned resource, this link points to a resource containing the latest (e.g., current) version.&lt;br /&gt;
| [http://tools.ietf.org/html/rfc5829 RFC 5829]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| working-copy&lt;br /&gt;
| When included on a versioned resource, this link points to a working copy for this resource.&lt;br /&gt;
| [http://tools.ietf.org/html/rfc5829 RFC 5829]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| working-copy-of&lt;br /&gt;
| When included on a working copy, this link points to the versioned resource from which this working copy was obtained.&lt;br /&gt;
| [http://tools.ietf.org/html/rfc5829 RFC 5829]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| predecessor-version&lt;br /&gt;
| When included on a versioned resource, this link points to a resource containing the predecessor version in the version history.&lt;br /&gt;
| [http://tools.ietf.org/html/rfc5829 RFC 5829]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| successor-version&lt;br /&gt;
| When included on a versioned resource, this link points to a resource containing the successor version in the version history.&lt;br /&gt;
| [http://tools.ietf.org/html/rfc5829 RFC 5829]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| ... || ... || ...&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== dropped ==&lt;br /&gt;
The following rel values were in earlier version(s) of specification(s) and it is presumed by their absence from the most recent version of the respective specification(s) that they have been deprecated or obsoleted. &lt;br /&gt;
&lt;br /&gt;
In general, you {{should not}} use any dropped values.&lt;br /&gt;
&lt;br /&gt;
If any such values have been superceded by standard values (see the first table on this page), then you {{must not}} use the dropped versions.&lt;br /&gt;
&lt;br /&gt;
In particular:&lt;br /&gt;
* if a rel value was in a draft and is missing (without explanation) from the final spec, or&lt;br /&gt;
* if a rel value was in a previous version of and is missing (without explanation) from an update to the specification (even a draft update)&lt;br /&gt;
&lt;br /&gt;
Then absent any other information or explanation, it is presumed that the group/editors working on that specification decided to explicitly drop it (either in development, or in the updated version) and thus it should be obsoleted (not re-registered). &lt;br /&gt;
&lt;br /&gt;
If you wish to add them, please research &amp;lt;em&amp;gt;why&amp;lt;/em&amp;gt; such values were omitted from latter specifications before doing so. If you do discover the reasoning, please add a short statement or link to thereof into the appropriate place in the following table.&lt;br /&gt;
&lt;br /&gt;
If there is more data, e.g. a link to an email of discussion of the spec development that explains ''why'' the rel value was dropped, and it explicitly states, e.g. it was without prejudice, or merely post-poned, or perhaps expected to be spun-out into its spec (or some other explicit positive reason), then it makes to link/cite that explicit text as part of a proposal.&lt;br /&gt;
&lt;br /&gt;
Sources: &lt;br /&gt;
* [http://www.w3.org/MarkUp/html3/ HTML3] (HTML3) / has been superceded by [http://www.w3.org/MarkUp/Wilbur/ HTML 3.2] - which itself has been superceded by [http://www.w3.org/TR/REC-html40 HTML 4.0] - which itself has been updated by [http://w3.org/TR/html401 HTML 4.01], commonly referred to as &amp;quot;HTML 4&amp;quot; in this wiki and other places.)&lt;br /&gt;
* [http://www.w3.org/TR/relations.html Proposed HTML 4.0 link types] (HTML4dropped) - obsoleted/superceded by the HTML 4.0 Recommendation.  Any values that were in the &amp;quot;Proposed HTML 4.0 link types&amp;quot; document but didn't make it into the HTML 4.0 Recommendation were thus explicitly dropped and should be avoided.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! summary !! defining specification !! why dropped &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|[[rel-banner|banner]]||Was used to reference another document to be used as banner for this document (i.e. a form of &amp;quot;include&amp;quot; statement).|| HTML3 ||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-begin|begin]] || identifies the author-defined start of a sequence of documents of which the current document is a node.&lt;br /&gt;
 || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-biblioentry|biblioentry]] || identifies a bibliographic entry || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-bibliography|bibliography]] || identifies a bibliography || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-child|child]] (obsolete/superceded) || the target document is a hierarchical child, or subdocument, of the current document|| HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-citation|citation]] || the target is a bibliographic citation || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-collection|collection]] || the target document is an collection that contains the current document || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-definition|definition]] || identifies a definition of a term || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-disclaimer|disclaimer]] || identifies a hypertext link to a legal disclaimer || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-editor|editor]] || identifies a hypertext link to an editor || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-end|end]] || identifies the author-defined end of a sequence of documents of which the current document is a node. || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-footnote|footnote]] || the anchor is a footnote marker and the target is a footnote || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-navigate|navigate]] || the target document contains information such as a image map that will help users to gain a sense of how and where to found information || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-origin|origin]] || synonym for &amp;lt;code&amp;gt;top&amp;lt;/code&amp;gt; || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-parent|parent]] (obsolete/superceded) || the target document is the hierarchical parent, or container, of the current document|| HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-pointer|pointer]] || the target is a pointer to the real target. This value can be used by a user agent to perform a pre-fetch of the specified target for evaluation until the real target is reached || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-publisher|publisher]] || identifies a hypertext link to a publisher || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sibling|sibling]] (obsolete/superceded) || the target document is a child of a common parent, or a hierarchical peer of the current document|| HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-top|top]] || the target document is the logical top node of the tree (see also &amp;lt;code&amp;gt;begin&amp;lt;/code&amp;gt;) || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-trademark|trademark]] || identifies a hypertext link to a trademark notice || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-translation|translation]] || the target is a translation to another language || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-urc|urc]] || identifies a Universal Resource Citation || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== dropped without prejudice ==&lt;br /&gt;
In one known instance (from HTML4 to HTML5), some rel values were in an earlier version of a specification (or a proposal) and were dropped from a latter (draft) version, and it was noted that these values were dropped with the intent that they could still be proposed in a registry and thus they explicitly were not deprecated or obsoleted. This section documents such values as separate from the [[#dropped|dropped]] section.&lt;br /&gt;
&lt;br /&gt;
In general, you {{should not}} use any dropped values.&lt;br /&gt;
&lt;br /&gt;
If any such values have been superceded by standard values (see the first table on this page), then you {{must not}} use the dropped versions.&lt;br /&gt;
&lt;br /&gt;
Rel values that were dropped without prejudice from a specification will be considered similar to new values that have never been specified.&lt;br /&gt;
&lt;br /&gt;
If you know of additional rel values that were dropped without prejudice from an update to a specification, please cite a URL and quote from the group developing the specification that officially states from that group that the dropping of the values was done without prejudice, or equivalent statement (such as explicit allowance of external registration, proposal, and/or development).&lt;br /&gt;
&lt;br /&gt;
This table serves a historical purpose. If you wish to propose a value from this table, please copy it and leave it in place.&lt;br /&gt;
&lt;br /&gt;
Sources: &lt;br /&gt;
* Several rel values were [http://www.w3.org/Bugs/Public/show_bug.cgi?id=7475#c15 explicitly dropped from HTML5]. Per: [http://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html Issue 118 Decision] ('''emphasis''' added): &amp;lt;blockquote&amp;gt;&amp;lt;p&amp;gt;&amp;quot;The final proposal argues for the removal of some relation values, to wit, it suggests removal of '''index, up, first and last'''. It was pointed out in survey comments that these relations are already registered in the IANA link relation registry. Presumably, '''these relations could also be entered in whatever other registry or registries HTML5 adopts for this purpose'''.&amp;lt;/p&amp;gt;...&amp;lt;p&amp;gt;&amp;quot;Next Steps&amp;lt;/p&amp;gt;...&amp;lt;p&amp;gt;&amp;quot;Since the relations to be removed are already registered at the IANA link relation registry, no further action is needed to include them there. WG members are '''free to register or record these relations elsehwere''' [sic], as well.&amp;quot;&amp;lt;/p&amp;gt;&amp;lt;/blockquote&amp;gt; &lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value&lt;br /&gt;
! summary&lt;br /&gt;
! defining specification&lt;br /&gt;
! why dropped &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-first|first]]&lt;br /&gt;
| synonym for &amp;lt;code&amp;gt;begin&amp;lt;/code&amp;gt;&lt;br /&gt;
| HTML4dropped - never in an official spec&lt;br /&gt;
| [http://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html Explicitly dropped from HTML5 interim draft yet permitted for external registry]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-index|index]]&lt;br /&gt;
| Refers to a document providing an index for the current document.&lt;br /&gt;
| was in [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4]&lt;br /&gt;
| [http://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html Explicitly dropped from HTML5 interim draft yet permitted for external registry]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-last|last]]&lt;br /&gt;
| synonym for &amp;lt;code&amp;gt;end&amp;lt;/code&amp;gt;&lt;br /&gt;
| HTML4dropped - never in an official spec&lt;br /&gt;
| [http://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html Explicitly dropped from HTML5 interim draft yet permitted for external registry]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-up|up]]&lt;br /&gt;
|When the document forms part of a hierarchy, this link references the immediate parent of the current document.&lt;br /&gt;
| was in [http://www.w3.org/MarkUp/html3/dochead.html HTML3] - but [http://www.w3.org/TR/html401/types.html#type-links dropped in HTML4]&lt;br /&gt;
| [http://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html Explicitly dropped from HTML5 interim draft yet permitted for external registry]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
See related [http://dev.w3.org/html5/spec/links.html#linkTypes HTML5: Link types] for existing HTML5 specified rel values.&lt;br /&gt;
&lt;br /&gt;
== rejected ==&lt;br /&gt;
Some rel values have been proposed and rejected.  They are listed here to make that explicit.  Authors {{must not}} use rejected rel values.&lt;br /&gt;
&lt;br /&gt;
Source: [[rejected-formats]].&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! origin / proposal !! why rejected &lt;br /&gt;
|-&lt;br /&gt;
| [[rel-logo|logo]]&lt;br /&gt;
| [http://relogo.org Relogo.org]&lt;br /&gt;
| [[rejected-formats#Logo]]&lt;br /&gt;
|-&lt;br /&gt;
|[[rel-pavatar|pavatar]] || [http://pavatar.com/ pavatar] || [[rejected-formats#Pavatar]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== tools ==&lt;br /&gt;
See [[implementations]].&lt;br /&gt;
&lt;br /&gt;
== addtional external research ==&lt;br /&gt;
Here are some additional historical references to the development or rel-values which may be useful when researching values, especially why specific values may have been proposed but abandoned.&lt;br /&gt;
* 1996-06-07 [http://www.w3.org/MarkUp/draft-ietf-html-relrev-00.txt Hypertext links in HTML] (copies: [http://ftp.ics.uci.edu/pub/ietf/html/draft-ietf-html-relrev-00.txt ftp.ics.uci.edu])&lt;br /&gt;
* 1996-11-13 [http://www.w3.org/Architecture/NOTE-link Describing and Linking Web Resources] &lt;br /&gt;
* 1997-01-23 [http://lists.gnu.org/archive/html/lynx-dev/1997-01/msg00537.html LYNX-DEV Lynx and the LINK tag] &lt;br /&gt;
* 1997-01-24 [http://lists.w3.org/Archives/Public/w3c-sgml-wg/1997Jan/0357.html Taxonomy list] &lt;br /&gt;
* 1997-03-28 [http://www.w3.org/TR/WD-htmllink-970328 W3C Working Draft: Hypertext Links and Meta Information in HTML]&lt;br /&gt;
 &lt;br /&gt;
=== previous attempts at documenting ===&lt;br /&gt;
There have been previous attempts at documenting known rel values, most of which fell out of date due to being dependent on a single author maintaining them. They're listed here purely for historical reasons, and are not sufficient to be references of their own (since they're just individual curations of other references)&lt;br /&gt;
* [http://fantasai.tripod.com/qref/Appendix/LinkTypes/ltdef.html Link Type Definitions Glossary] by fantasai&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== related ==&lt;br /&gt;
{{rel-related-pages}}&lt;br /&gt;
* [[elemental-microformats]]&lt;br /&gt;
* [[existing-rev-values]]&lt;br /&gt;
* [[existing-class-names]]&lt;br /&gt;
&lt;br /&gt;
== copyright ==&lt;br /&gt;
&lt;br /&gt;
{{cc-pd-license}}&lt;/div&gt;</summary>
		<author><name>Andy sky</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=existing-rel-values&amp;diff=64853</id>
		<title>existing-rel-values</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=existing-rel-values&amp;diff=64853"/>
		<updated>2015-03-12T17:08:22Z</updated>

		<summary type="html">&lt;p&gt;Andy sky: /* HTML5 link type extensions */ Nowiki syntax on href attributes for examples of namespace declaration&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt; existing rel values &amp;lt;/entry-title&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This page contains tables of known HTML rel values from specifications, formats, proposals, brainstorms, and non-trivial [[POSH]] usage in the wild.  In addition, dropped and rejected values are listed at the end for comprehensiveness.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;usage&amp;quot;&amp;gt;usage&amp;lt;/span&amp;gt;: see [[rel-faq#How_is_rel_used|how is 'rel' used]].  Regarding &amp;lt;span id=&amp;quot;rev&amp;quot;&amp;gt;rev&amp;lt;/span&amp;gt;, see: [[rel-faq#Should_rev_even_be_used|should 'rev' even be used]].&lt;br /&gt;
&lt;br /&gt;
This page is also the official rel registry ([http://www.whatwg.org/specs/web-apps/current-work/multipage/links.html#other-link-types][http://www.w3.org/TR/html5/links.html#other-link-types]). Add new and proposed rel values to the following section:&lt;br /&gt;
* [[existing-rel-values#HTML5_link_type_extensions|HTML5 link type extension]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== formats ==&lt;br /&gt;
These rel values are defined formats from specifications (HTML 4, microformats) are thus are &amp;lt;strong&amp;gt;recommended for general use&amp;lt;/strong&amp;gt;.  Alphabetically ordered by value.&lt;br /&gt;
&lt;br /&gt;
Note:&lt;br /&gt;
* &amp;lt;strong&amp;gt;Do not&amp;lt;/strong&amp;gt; add proposed rel values for HTML5 here, add them to the [[#HTML5_link_type_extensions|HTML5 link type extensions]] table.&lt;br /&gt;
* &amp;lt;strong&amp;gt;Do not&amp;lt;/strong&amp;gt; add rel values you find in the wild to this table of rel formats, instead add them to the table in the [[existing-rel-values#POSH_usage|POSH section]].&lt;br /&gt;
* &amp;lt;strong&amp;gt;Do not&amp;lt;/strong&amp;gt; add non-HTML rel values you find to this table of rel formats, instead add them to the table in the [[existing-rel-values#non_HTML_rel_values|non HTML rel values section]].&lt;br /&gt;
* &amp;lt;strong&amp;gt;Do not&amp;lt;/strong&amp;gt; add rel values from obsolete/superceded proposals or drafts, instead add them to the table in the &amp;quot;dropped&amp;quot; section.&lt;br /&gt;
&lt;br /&gt;
Sources:&lt;br /&gt;
* W3C Recommendations: &lt;br /&gt;
** [http://www.w3.org/TR/html401/types.html#h-6.12 HTML 4.01 section 6.12 Link types] (HTML4 Link types)&lt;br /&gt;
** [http://www.w3.org/TR/grddl/ Gleaning Resource Descriptions from Dialects of Languages] (GRDDL)&lt;br /&gt;
* [[microformats]] specifications&lt;br /&gt;
** [[xfn]]&lt;br /&gt;
** [[rel-license]]&lt;br /&gt;
** [[rel-nofollow]]&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! Keyword&lt;br /&gt;
! Effect on &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt;&lt;br /&gt;
! Effect on &amp;lt;code&amp;gt;a&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;area&amp;lt;/code&amp;gt;&lt;br /&gt;
! Brief description &amp;lt;br /&amp;gt;(from the relevant specification where possible)&lt;br /&gt;
! Link to defining specification&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-acquaintance|acquaintance]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the person represented by the current document considers the person represented by the referenced document to be an acquaintance&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-alternate|alternate]]&lt;br /&gt;
| external resource&lt;br /&gt;
| external relation&lt;br /&gt;
| Designates substitute versions for the document in which the link occurs. When used together with the &amp;lt;code&amp;gt;lang&amp;lt;/code&amp;gt; attribute, it implies a translated version of the document. When used together with the &amp;lt;code&amp;gt;media&amp;lt;/code&amp;gt; attribute, it implies a version designed for a different medium (or media). &lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-appendix|appendix]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document serving as an appendix in a collection of documents. &lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-bookmark|bookmark]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a bookmark. A bookmark is a link to a key entry point within an extended document. The &amp;lt;code&amp;gt;title&amp;lt;/code&amp;gt; attribute may be used, for example, to label the bookmark. Note that several bookmarks may be defined in each document. &lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-chapter|chapter]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document serving as a chapter in a collection of documents.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-child|child]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is a child of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-colleague|colleague]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is a colleague of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-contact|contact]] &lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the person represented by the current document considers the person represented by the referenced document to be a contact&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-contents|contents]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document serving as a table of contents. Some user agents also support the synonym ToC (from &amp;quot;Table of Contents&amp;quot;).&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-copyright|copyright]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a copyright statement for the current document.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-co-resident|co-resident]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person lives in the same residence as the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-co-worker|co-worker]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is a co-worker of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-crush|crush]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| this person considers the referenced person to be a crush (i.e. has a crush on the referenced person)&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-date|date]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| this person considers the referenced person to be a date (i.e. is dating the referenced person)&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-friend|friend]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the person represented by the current document considers the person represented by the referenced document to be a friend&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-glossary|glossary]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document providing a list of terms and their definitions that pertain to the current document.||[http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-help|help]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document offering help (more information, links to other sources information, etc.)&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-its-rules|its-rules]]&lt;br /&gt;
| allowed&lt;br /&gt;
| not allowed&lt;br /&gt;
| Refers to a document with external ITS rules.&lt;br /&gt;
| [http://www.w3.org/TR/its20/#selection-global-html5 Internationalization Tag Set (ITS) Version 2.0]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-kin|kin]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is part of the extended family of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-license|license]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| &amp;amp;hellip;indicates that the &amp;lt;nowiki&amp;gt;[referenced document]&amp;lt;/nowiki&amp;gt; is a license for the current page.&lt;br /&gt;
| [[rel-license]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-me|me]]&lt;br /&gt;
| external relation&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced document represents the same person as does the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-met|met]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| this person has met the referenced person&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-muse|muse]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person inspires the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-neighbor|neighbor]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person lives nearby the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-next|next]]&lt;br /&gt;
| external relation&lt;br /&gt;
| external relation&lt;br /&gt;
| Refers to the next document in a linear sequence of documents. User agents may choose to preload the &amp;quot;next&amp;quot; document, to reduce the perceived load time.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-nofollow|nofollow]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| indicates that the destination of that hyperlink {{should-not}} be afforded any additional weight or ranking by user agents which perform link analysis upon web pages (e.g. search engines).&lt;br /&gt;
| [[rel-nofollow]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-parent|parent]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is a parent of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-prev|prev]]&lt;br /&gt;
| external relation&lt;br /&gt;
| external relation&lt;br /&gt;
| Refers to the previous document in an ordered series of documents. Some user agents also support the synonym &amp;quot;Previous&amp;quot;.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-previous|previous]]&lt;br /&gt;
| external relation&lt;br /&gt;
| external relation&lt;br /&gt;
| Synonym of &amp;lt;code&amp;gt;prev&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-section|section]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document serving as a section in a collection of documents.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sibling|sibling]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is a sibling of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-spouse|spouse]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is a spouse of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-start|start]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to the first document in a collection of documents. This link type tells search engines which document is considered by the author to be the starting point of the collection.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-stylesheet|stylesheet]]&lt;br /&gt;
| external resource&lt;br /&gt;
| not allowed&lt;br /&gt;
| a style sheet for the current document&amp;lt;br /&amp;gt; used with the invisible &amp;lt;link href&amp;gt; element which is not ideal for content relationships. Content relationships should be user visible and thus uses with &amp;lt;a href&amp;gt; are strongly preferred. Unfortunately the use of stylesheet in user visible content like &amp;lt;a href&amp;gt; appears to be strictly theoretical.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-subsection|subsection]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document serving as a subsection in a collection of documents.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sweetheart|sweetheart]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| this person considers the referenced person to be their sweetheart&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-tag|tag]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| &amp;amp;hellip;indicates that the &amp;lt;nowiki&amp;gt;[referenced document]&amp;lt;/nowiki&amp;gt; is an author-designated &amp;quot;tag&amp;quot; (or keyword/subject) for the current page.&lt;br /&gt;
| [[rel-tag]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-toc|toc]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Synonym of &amp;lt;code&amp;gt;contents&amp;lt;/code&amp;gt; (from &amp;quot;Table Of Contents&amp;quot;)&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-transformation|transformation]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Relates a source document to a transformation, usually represented in XSLT, that relates the source document syntax to the RDF graph syntax. Used in [[grddl|GRDDL]]&lt;br /&gt;
| [http://www.w3.org/TR/grddl/#transformation GRDDL] &lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== notes ===&lt;br /&gt;
*&amp;lt;code&amp;gt;rel=&amp;quot;alternate&amp;quot;&amp;lt;/code&amp;gt; can take further meaning from additional attributes, such as &lt;br /&gt;
** &amp;lt;code&amp;gt;rel=&amp;quot;alternate&amp;quot; lang=&amp;quot;fr&amp;quot;&amp;lt;/code&amp;gt; (French language version of this page)&lt;br /&gt;
** &amp;lt;code&amp;gt;rel=&amp;quot;alternate&amp;quot; media=&amp;quot;print&amp;quot;&amp;lt;/code&amp;gt; (printable version of this page)&lt;br /&gt;
** &amp;lt;code&amp;gt;rel=&amp;quot;alternate&amp;quot; media=&amp;quot;handheld&amp;quot;&amp;lt;/code&amp;gt; (version of the page intended or better for handheld/portable devices like PDAs, cell phones, etc.)&lt;br /&gt;
&lt;br /&gt;
*Synonyms such as &amp;quot;previous&amp;quot;, &amp;quot;toc&amp;quot; are not as widely supported as the main term.&lt;br /&gt;
&lt;br /&gt;
== proposals ==&lt;br /&gt;
A few rel values have been developed as drafts as a result of going through most of the microformats [[process]], and are thus listed here for your serious consideration. You &amp;lt;strong&amp;gt;may use these values&amp;lt;/strong&amp;gt;, and if you find any problems with them please point them out on the respective &amp;quot;issues&amp;quot; page for the rel value.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! summary !! proposed in !! external spec (if any)&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-pronunciation|pronunciation]] || &amp;amp;hellip;indicates that the destination of the 'link' element is a document providing a pronunciation lexicon for speech-synthesis purposes. || [[rel-pronunciation]]&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-directory|directory]] || &amp;amp;hellip;indicates that the destination of the hyperlink is a directory listing containing an entry for the current page. || [[rel-directory]]&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-enclosure|enclosure]] || &amp;amp;hellip;indicates that the destination of that hyperlink is intended to be downloaded and cached. || [[rel-enclosure]] || [http://www.apps.ietf.org/rfc/rfc4287.html RFC4287]&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-home|home]] || &amp;amp;hellip;indicates that the &amp;lt;nowiki&amp;gt;[referenced document]&amp;lt;/nowiki&amp;gt; is the homepage of the site in which the current page appears. || [[rel-home]]&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-payment|payment]] || &amp;amp;hellip;indicates that the destination of the hyperlink provides a way to show or give support (e.g. financial) for the current page|| [[rel-payment]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== HTML5 link type extensions ==&lt;br /&gt;
&lt;br /&gt;
The following values are registered as link type extensions per the [http://www.whatwg.org/specs/web-apps/current-work/multipage/links.html#other-link-types requirements in the WHATWG HTML spec] and the [http://dev.w3.org/html5/spec/links.html#other-link-types requirements in the W3C HTML5 spec]. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Before you register a new value:&lt;br /&gt;
* '''Please check the [[#formats|Formats table]] and DO NOT re-register''' rel values that are already there. Please note that the W3C HTML WG has made a [http://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html Decision] to drop &amp;lt;code&amp;gt;index&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;up&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;first&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;last&amp;lt;/code&amp;gt; from the HTML5 spec itself.&lt;br /&gt;
* '''Please check the [[#dropped|Dropped table]] and DO NOT register''' values that are already there. If you believe a rel value was dropped from another specification without prejudice, please provide link/cite to explicit text/decision stating as such, e.g. the value was merely postponed, or perhaps expected to be spun-out into its own spec from the group developing that specification.&lt;br /&gt;
&lt;br /&gt;
Note that entries in the [[#formats|Formats table]] and entries that are already in HTML5 as built-in keywords are also considered extensions with the &amp;quot;Ratified&amp;quot; status.&lt;br /&gt;
&lt;br /&gt;
Please make sure that registrations added here have all the required data filled in ''including'':&lt;br /&gt;
* &amp;quot;Effect on link&amp;quot;&lt;br /&gt;
* &amp;quot;Effect on a and area&amp;quot; and &lt;br /&gt;
* a link to a spec that documents the keyword ''as an HTML &amp;lt;code&amp;gt;rel&amp;lt;/code&amp;gt; keyword''. (A spec that merely defines the file format of the link target but does not define the &amp;lt;code&amp;gt;rel&amp;lt;/code&amp;gt; keyword for use in HTML is not the kind of spec that is being required here.)&lt;br /&gt;
&lt;br /&gt;
Entries lacking any of the above required data will likely be removed. &lt;br /&gt;
&lt;br /&gt;
Changes to this registry will not be reflected in validators in real time. But validators will typically get automatically updated with the changes within one week or so&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! Keyword&lt;br /&gt;
! Effect on &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt;&lt;br /&gt;
! Effect on &amp;lt;code&amp;gt;a&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;area&amp;lt;/code&amp;gt;&lt;br /&gt;
! Brief description&lt;br /&gt;
! Link to specification&lt;br /&gt;
! Synonyms&lt;br /&gt;
! Status&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-apple-touch-icon|apple-touch-icon]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specify a Webpage Icon for a “Web Clip”, or “touch icon”, for mobile devices (not limited to Apple devices).&lt;br /&gt;
| [http://developer.apple.com/library/safari/#documentation/appleapplications/reference/safariwebcontent/configuringwebapplications/configuringwebapplications.html Apple's Safari Web Content Guide]&lt;br /&gt;
| probably redundant with rel=icon&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-apple-touch-icon-precomposed|apple-touch-icon-precomposed]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specify a Webpage Icon for a “Web Clip”, or “touch icon”, for mobile devices (not limited to Apple devices).&lt;br /&gt;
| [http://developer.apple.com/library/safari/#documentation/appleapplications/reference/safariwebcontent/configuringwebapplications/configuringwebapplications.html Apple's Safari Web Content Guide]&lt;br /&gt;
| probably redundant with rel=icon&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-apple-touch-startup-image|apple-touch-startup-image]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specify a splashscreen for Web apps on iOS Safari &lt;br /&gt;
| [http://developer.apple.com/library/safari/#documentation/appleapplications/reference/safariwebcontent/configuringwebapplications/configuringwebapplications.html Apple's Safari Web Content Guide]&lt;br /&gt;
| maybe redundant with rel=icon with the sizes attribute?&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-attachment|attachment]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| The resource linked to is &amp;quot;attached&amp;quot; to this document, similar to email attachments. Used in WordPress.&lt;br /&gt;
| No formal specification&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[WPVL_PRETTYPHOTO_REL]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Open lightbox with video&lt;br /&gt;
| No formal specification&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-authorization_endpoint|authorization_endpoint]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specify a hosted authorization server&lt;br /&gt;
| [http://indiewebcamp.com/distributed-indieauth  distributed IndieAuth documentation]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-canonical|canonical]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specifies the canonical URL for the current document in order to help avoid duplicate content.&lt;br /&gt;
| [http://en.wikipedia.org/wiki/Canonical_meta_tag Canonical meta tag] [http://www.Google.com/support/webmasters/bin/answer.py?answer=139066#2 Canonicalization at Google Webmaster Central] [http://www.Bing.com/community/site_blogs/b/webmaster/archive/2009/02/12/partnering-to-help-solve-duplicate-content-issues.aspx Microsoft Webmaster Center] [http://www.YSearchBlog.com/2009/02/12/fighting-duplication-adding-more-arrows-to-your-quiver/ Yahoo! Search Blog]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-category|category]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to a category assigned to the current document or post. Implemented by WordPress for indicating a relation between a blog post and a category.&lt;br /&gt;
| [[rel-category]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-component|component]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specify an HTML document that is treated as a component of this document.&lt;br /&gt;
| [https://dvcs.w3.org/hg/webcomponents/raw-file/tip/spec/components/index.html Web Components]&lt;br /&gt;
| &lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-chrome-webstore-item|chrome-webstore-item]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Link tag to declare for app and extensions inline installations hosted in the Chrome Web Store.&lt;br /&gt;
| [https://developers.google.com/chrome/web-store/docs/inline_installation Using Inline Installation]&lt;br /&gt;
| &lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#conformsTo|DCTERMS.conformsTo]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| An established standard to which the described resource conforms. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;lt;nowiki&amp;gt;http://purl.org/dc/terms/&amp;lt;/nowiki&amp;gt;&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
| It may be replaced by the literal value in form of &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.conformsTo&amp;quot; content=&amp;quot;...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#contributor|DCTERMS.contributor]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| An entity responsible for making contributions to the resource. Examples include a person, an organization, or a service. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;lt;nowiki&amp;gt;http://purl.org/dc/terms/&amp;lt;/nowiki&amp;gt;&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
| It may be replaced by the literal value in form of &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.contributor&amp;quot; content=&amp;quot;...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#creator|DCTERMS.creator]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| An entity primarily responsible for making the resource. Examples include a person, an organization, or a service. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;lt;nowiki&amp;gt;http://purl.org/dc/terms/&amp;lt;/nowiki&amp;gt;&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
| It may be replaced by the literal value in form of &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.creator&amp;quot; content=&amp;quot;...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#description|DCTERMS.description]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| An account of the resource. Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource.  &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;lt;nowiki&amp;gt;http://purl.org/dc/terms/&amp;lt;/nowiki&amp;gt;&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
| It may be replaced by the literal value in form of &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.description&amp;quot; content=&amp;quot;...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#hasFormat|DCTERMS.hasFormat]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that is substantially the same as the pre-existing described resource, but in another format.  &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;lt;nowiki&amp;gt;http://purl.org/dc/terms/&amp;lt;/nowiki&amp;gt;&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#hasPart|DCTERMS.hasPart]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that is included either physically or logically in the described resource.  &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;lt;nowiki&amp;gt;http://purl.org/dc/terms/&amp;lt;/nowiki&amp;gt;&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#hasVersion|DCTERMS.hasVersion]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that is a version, edition, or adaptation of the described resource.  &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;lt;nowiki&amp;gt;http://purl.org/dc/terms/&amp;lt;/nowiki&amp;gt;&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#identifier|DCTERMS.identifier]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| An unambiguous reference to the resource within a given context.  &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;lt;nowiki&amp;gt;http://purl.org/dc/terms/&amp;lt;/nowiki&amp;gt;&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
| It may be replaced by the literal value in form of &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.identifier&amp;quot; content=&amp;quot;...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#isFormatOf|DCTERMS.isFormatOf]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that is substantially the same as the described resource, but in another format.  &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;lt;nowiki&amp;gt;http://purl.org/dc/terms/&amp;lt;/nowiki&amp;gt;&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#isPartOf|DCTERMS.isPartOf]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource in which the described resource is physically or logically included.  &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;lt;nowiki&amp;gt;http://purl.org/dc/terms/&amp;lt;/nowiki&amp;gt;&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#isReferencedBy|DCTERMS.isReferencedBy]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that references, cites, or otherwise points to the described resource. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;lt;nowiki&amp;gt;http://purl.org/dc/terms/&amp;lt;/nowiki&amp;gt;&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#isReplacedBy|DCTERMS.isReplacedBy]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that supplants, displaces, or supersedes the described resource. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;lt;nowiki&amp;gt;http://purl.org/dc/terms/&amp;lt;/nowiki&amp;gt;&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#isRequiredBy|DCTERMS.isRequiredBy]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that requires the described resource to support its function, delivery, or coherence. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;lt;nowiki&amp;gt;http://purl.org/dc/terms/&amp;lt;/nowiki&amp;gt;&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#isVersionOf|DCTERMS.isVersionOf]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource of which the described resource is a version, edition, or adaptation.	&amp;lt;br /&amp;gt;Changes in version imply substantive changes in content rather than differences in format. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;lt;nowiki&amp;gt;http://purl.org/dc/terms/&amp;lt;/nowiki&amp;gt;&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#license|DCTERMS.license]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A legal document giving official permission to do something with the resource. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;lt;nowiki&amp;gt;http://purl.org/dc/terms/&amp;lt;/nowiki&amp;gt;&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
| It may be replaced by the literal value in form of &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.license&amp;quot; content=&amp;quot;...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#mediator|DCTERMS.mediator]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| An entity that mediates access to the resource and for whom the resource is intended or useful. In an educational context, a mediator might be a parent, teacher, teaching assistant, or care-giver. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;lt;nowiki&amp;gt;http://purl.org/dc/terms/&amp;lt;/nowiki&amp;gt;&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
| It may be replaced by the literal value in form of &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.mediator&amp;quot; content=&amp;quot;...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#publisher|DCTERMS.publisher]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| An entity responsible for making the resource available. Examples include a person, an organization, or a service. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;lt;nowiki&amp;gt;http://purl.org/dc/terms/&amp;lt;/nowiki&amp;gt;&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
| It may be replaced by the literal value in form of &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.publisher&amp;quot; content=&amp;quot;...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#references|DCTERMS.references]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that is referenced, cited, or otherwise pointed to by the described resource. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;lt;nowiki&amp;gt;http://purl.org/dc/terms/&amp;lt;/nowiki&amp;gt;&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#relation|DCTERMS.relation]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;lt;nowiki&amp;gt;http://purl.org/dc/terms/&amp;lt;/nowiki&amp;gt;&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#replaces|DCTERMS.replaces]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that is supplanted, displaced, or superseded by the described resource. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;lt;nowiki&amp;gt;http://purl.org/dc/terms/&amp;lt;/nowiki&amp;gt;&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#requires|DCTERMS.requires]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that is required by the described resource to support its function, delivery, or coherence. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;lt;nowiki&amp;gt;http://purl.org/dc/terms/&amp;lt;/nowiki&amp;gt;&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#rightsHolder|DCTERMS.rightsHolder]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A person or organization owning or managing rights over the resource. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;lt;nowiki&amp;gt;http://purl.org/dc/terms/&amp;lt;/nowiki&amp;gt;&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
| It may be replaced by the literal value in form of &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.rightsHolder&amp;quot; content=&amp;quot;...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#source|DCTERMS.source]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource from which the described resource is derived. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;lt;nowiki&amp;gt;http://purl.org/dc/terms/&amp;lt;/nowiki&amp;gt;&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#subject|DCTERMS.subject]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| The topic of the resource. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;lt;nowiki&amp;gt;http://purl.org/dc/terms/&amp;lt;/nowiki&amp;gt;&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-disclosure|disclosure]]&lt;br /&gt;
| Not allowed&lt;br /&gt;
| External Resource&lt;br /&gt;
| The 'disclosure' Link Relation Type designates a list of patent disclosures or a particular patent disclosure itself made with respect to material for which such relation type is specified.&lt;br /&gt;
| [http://tools.ietf.org/html/draft-yevstifeyev-disclosure-relation The 'disclosure' Link Relation Type]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-discussion|discussion]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to discussion of the current document or post.&lt;br /&gt;
| [[rel-discussion]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dns-prefetch|dns-prefetch]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Tells the browser to perform dns lookup for host names ahead of use.&lt;br /&gt;
| [https://developer.mozilla.org/En/Controlling_DNS_prefetching Mozilla documentation] [http://dev.chromium.org/developers/design-documents/dns-prefetching Google documentation]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-edit|edit]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Tells the browser where the current page can be edited&lt;br /&gt;
| [http://universaleditbutton.org/Registered_MIME_type#Alternate_Linking_Scheme Universal Edit Button Alternate Linking Scheme].  Implemented in at least [http://mediawiki.org MediaWiki].&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-edituri|EditURI]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A blogging auto discovery value, commonly used by WordPress&lt;br /&gt;
| [http://bitworking.org/projects/atom/draft-gregorio-09.html#Edit AtomAPI]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-enclosure|enclosure]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| External Resource&lt;br /&gt;
| Indicates that the referred resource is intended to be downloaded and cached.&lt;br /&gt;
| [[rel-enclosure]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-entry-content|entry-content]]&lt;br /&gt;
| Not allowed&lt;br /&gt;
| External Resource&lt;br /&gt;
| Indicates that the referenced document is an alternative display source for an Internet Explorer Web Slice.&lt;br /&gt;
| [http://msdn.microsoft.com/en-us/library/cc304073(VS.85).aspx#_alternative Web Slice format specification 0.9]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-external|external]]&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Indicates that the referenced document is not part of the same site as the current document.&lt;br /&gt;
| [[rel-external]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-home|home]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to the top level document for the current document. It can be combined with 'alternate' to indicate a feed for the site of the current page.&lt;br /&gt;
| [[rel-home]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-hub|hub]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to a hub that enables registration for notification of updates to the current page.&lt;br /&gt;
| [http://pubsubhubbub.googlecode.com/svn/trunk/pubsubhubbub-core-0.3.html#discovery PubSubHubbub Spec]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-in-reply-to|in-reply-to]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to an original post that the current page is a comment on or reply to.&lt;br /&gt;
| [[rel-in-reply-to]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-index|index]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to a document providing a list of topics with pointers that pertain to the current document.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-indieauth|indieauth]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| the IndieAuth server for the relying party to contact for IndieAuth authentication&lt;br /&gt;
| [http://spec.indieauth.com/ IndieAuth specification]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-issues|issues]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to issues regarding the current document or specification.&lt;br /&gt;
| [[rel-discussion]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-lightbox|lightbox]]&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Img Pop-Up&lt;br /&gt;
| Images with this attribute are displayed in a larger way than embedded in a website (or how you specified it) when clicked (e.g. with installed &amp;quot;Lightbox 2&amp;quot;-Plugin). When adding [group] to rel=&amp;quot;lightbox&amp;quot; all images get a clickable button for next/prev; insert into &amp;lt;code&amp;gt;&amp;amp;lt;a rel=&amp;quot;lightbox[group]&amp;quot;&amp;gt;&amp;amp;lt;img src=&amp;quot;http:example.com/img.jpg&amp;quot;&amp;gt;&amp;amp;lt;/a&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://lokeshdhakar.com/projects/lightbox2/ Lightbox 2] (needs actual specification to be kept in this list, this link is just documentation of one implementation)&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-manifest|manifest]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Imports or links to a manifest&lt;br /&gt;
| [http://w3c.github.io/manifest/#linking W3C Manifest for web application]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-meta|meta]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| External metadata about the HTML document&lt;br /&gt;
| [http://www.w3.org/TR/2004/REC-rdf-syntax-grammar-20040210/#section-rdf-in-HTML W3C's RDF/XML Syntax Specification]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-indieauth|micropub]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| the micropub endpoint for creating new posts&lt;br /&gt;
| [http://indiewebcamp.com/micropub  Micropub scecification]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-openid.delegate|openid.delegate]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| When the page that contains the link is used as an OpenID indentifier, the relying party perform sOpenID 1.1 authentication with the link target as the identifier instead. &lt;br /&gt;
| [http://openid.net/specs/openid-authentication-1_1.html#delegating_authentication OpenID Authentication 1.1]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-openid.server|openid.server]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| The OpenID server for the relying party to contact for OpenID 1.1 authentication&lt;br /&gt;
| [http://openid.net/specs/openid-authentication-1_1.html#anchor4 OpenID Authentication 1.1]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-openid2.local_id|openid2.local_id]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| When the page that contains the link is used as an OpenID indentifier, the relying party perform sOpenID 2.0 authentication with the link target as the identifier instead. &lt;br /&gt;
| [http://openid.net/specs/openid-authentication-2_0.html#rfc.section.7.3.3 OpenID Authentication 2.0]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-openid2.provider|openid2.provider]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| The OpenID server for the relying party to contact for OpenID 2.0 authentication&lt;br /&gt;
| [http://openid.net/specs/openid-authentication-2_0.html#rfc.section.7.3.3 OpenID Authentication 2.0]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-p3pv1|p3pv1]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| References a machine-readable privacy policy description in the P3P format&lt;br /&gt;
| [http://www.w3.org/TR/P3P/#syntax_link P3P spec]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-pgpkey|pgpkey]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Associates a PGP key with a Web page so that the Web page URL can be used as the commenter's URL in PGP-signed blog comments and the blogging system receiving the comment can fetch the key and verify the signature as belonging to the owner of the URL.&lt;br /&gt;
| [http://golem.ph.utexas.edu/~distler/blog/archives/000320.html PGP-Signed Comments]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-pingback|pingback]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| gives the address of the pingback server that handles pingbacks to the current document&lt;br /&gt;
| [http://www.hixie.ch/specs/pingback/pingback Pingback]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-prerender|prerender]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| External Resource&lt;br /&gt;
| Prerenders the Web page targeted by the link including running it scripts.&lt;br /&gt;
| [[rel-prerender]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-profile|profile]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Contextual External Resource &lt;br /&gt;
| indicate[s] that the destination of that hyperlink is a metadata profile (e.g. an [[XMDP]] profile) for the current page or portion thereof. See also [[xmdp-brainstorming]].&lt;br /&gt;
| [http://microformats.org/wiki/rel-profile rel-profile]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-publisher|publisher]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| External Resource &lt;br /&gt;
| Indicates that the referenced document is a metadata profile (e.g., a social-media/real-name profile such as a Google+ profile) for the publisher of the current page, or some portion of the current page.&lt;br /&gt;
| [https://support.google.com/plus/answer/1713826?hl=en Google help page]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-rendition|rendition]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| External Resource&lt;br /&gt;
| Indicates some example rendering, interpretation, or depiction of the source. User agents may choose to execute, display, or render the target in-place; or navigate to the target.&lt;br /&gt;
| [http://www.globalmentor.com/specs/html-rel-rendition/ HTML rel rendition]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-reply-to|reply-to]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| indicates any mailbox(es) (i.e. email addresses) to which responses are to be sent. ''Note: this is distinct from the 'in-reply-to' value which refers to the originating document, not to the address where comments should be sent.&lt;br /&gt;
| [http://tools.ietf.org/html/rfc2822 RFC2822] (originally [http://tools.ietf.org/html/rfc822#section-4.4.3 RFC822])&lt;br /&gt;
|&lt;br /&gt;
| ratified&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-service|service]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Atom Publishing Protocol editing service autodiscovery.&lt;br /&gt;
| [http://wiki.whatwg.org/wiki/ServiceRelExtension Documentation on the WHATWG wiki]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-shortlink|shortlink]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specifies the preferred shortened URL for the page.&lt;br /&gt;
| [http://code.google.com/p/shortlink/wiki/Specification shortlink spec]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sidebar|sidebar]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Indicates that the referenced document is intended to be shown in a secondary browsing context.&lt;br /&gt;
| [[rel-sidebar]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sitemap|sitemap]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Provides a link to an XML document describing the layout of the site.&lt;br /&gt;
| [[rel-sitemap]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-subresource|subresource]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| An external resource intended for use within the current page.&lt;br /&gt;
| [http://www.chromium.org/spdy/link-headers-and-server-hint/link-rel-subresource Chromium documentation]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-syndication|syndication]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to a page which is a syndicated copy of the current page.&lt;br /&gt;
| [[rel-syndication]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-timesheet|timesheet]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Applies a timesheet to the document.&lt;br /&gt;
| [http://www.w3.org/TR/timesheets/#smilTimesheetsNS-Elements-Timesheet non-normative section in the Timesheet spec]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-token_endpoint|token_endpoint]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specify an HTTP endpoint that micropub clients can use to obtain an access token given an authorization code&lt;br /&gt;
| [http://indiewebcamp.com/token-endpoint token endpoint documentation]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-webmention|webmention]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| gives the address of the webmention endpoint that handles webmentions to the current document&lt;br /&gt;
| [http://webmention.org/ WebMention specification]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-widget|widget]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| External Resource&lt;br /&gt;
| Autodiscovery for W3C widgets&lt;br /&gt;
| [http://dev.w3.org/2006/waf/widgets/Overview.html#linking-to-a-widget-package-from-a-html- non-normative section in the Widget packaging spec]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-wlwmanifest|wlwmanifest]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Windows Live Writer manifest autodiscovery&lt;br /&gt;
| [http://msdn.microsoft.com/en-us/library/bb463263.aspx documentation on MSDN]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-image_src|image_src]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specify a Webpage Icon for use by Facebook, Yahoo, Digg, etc.&lt;br /&gt;
| Unknown, but see for instance [http://www.niallkennedy.com/blog/2009/03/enhanced-social-share.html this]&lt;br /&gt;
| probably redundant with rel=icon&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-cmis-acl|http://docs.oasis-open.org/ns/cmis/link/200908/acl]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| External Resource&lt;br /&gt;
| Identifies the resource containing a CMIS ACL document for the link context&lt;br /&gt;
| [http://docs.oasis-open.org/cmis/CMIS/v1.0/cs01/cmis-spec-v1.0.html#_Toc243905525 CMIS 1.0, Section 3.4.3.4]&lt;br /&gt;
| &lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-stylesheet/less|stylesheet/less]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Less CSS framework stylesheets.&lt;br /&gt;
| [http://lesscss.org/#-client-side-usage Less CSS usage]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== brainstorming ==&lt;br /&gt;
Several rel values are being brainstormed as potential microformats and are thus listed here. If you find you have a use for such semantics in real world examples, &amp;lt;strong&amp;gt;consider trying out&amp;lt;/strong&amp;gt; these values and provide feedback on the respective brainstorming page(s) with your results and experiences.&lt;br /&gt;
&lt;br /&gt;
You may list new proposed rel values here, and even better if you can list and link to POSH uses in the wild.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! summary !! brainstormed in and usage in the wild&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-accessibility|accessibility]] || indicate[s] that the destination of that hyperlink contains accessibility information for the current page. || [http://www.brucelawson.co.uk/2009/rel-accessibility/ blog post] which itself uses the rel value in a &amp;amp;lt;link&amp;amp;gt; tag in the head of the document.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-author|author]] || indicate[s] that the destination of that hyperlink represents the author of the current page. Combines with [[rel-me|rel-me]] to chain authorship information. || Google has said it will index rel-Author in this [http://googlewebmastercentral.blogspot.com/2011/06/authorship-markup-and-web-search.html blog post], with further [http://www.google.com/support/webmasters/bin/answer.py?answer=1229920 discussion of the rel-me connection] See also [http://dev.w3.org/html5/spec/Overview.html#link-type-author the HTML5 spec]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-bibliography|bibliography]] || indicate[s] that the destination of that hyperlink is a bibliography for the current page. || [http://microformats.org/discuss/mail/microformats-discuss/2007-October/010863.html mailing list post, 2007-10-15]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-cite|cite]] || indicate[s] that the destination of that hyperlink is an authoritative source or a precedent to the current page. || [[distributed-conversation-brainstorming]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-group|group]] || the referenced document represents a group to which the person represented by the current document belongs || [[group-brainstorming]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-jslicense|jslicense]]&lt;br /&gt;
| Refers to a document with JavaScript source code and license information (also called a [http://www.gnu.org/licenses/javascript-labels.html JavaScript License Web Labels] page). We might want choose a keyword for this that is more general -- there are many situations besides JavaScript in which it is desirable or required by license agreements (e.g., GNU GPL) to make an offer of both the source code and a copy of a license when distributing object code versions of a given work.&lt;br /&gt;
|* Brainstorming page -- thoughts on the name?&lt;br /&gt;
* Ex. [http://www.eff.org EFF.org] (on &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt;) &lt;br /&gt;
* Ex. [http://www.fsf.org FSF.org] (on &amp;lt;code&amp;gt;a&amp;lt;/code&amp;gt;)&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;span id=&amp;quot;longdesc&amp;quot;&amp;gt;[[rel-longdesc|longdesc]]&amp;lt;/span&amp;gt; || Alternative to the img longdesc attribute, for use on visible links || [http://www.google.com/search?q=rel%3D%22longdesc%22 Google search for rel=longdesc in the wild] shows many sources of proposals. Please edit this to list the earliest and perhaps most recent/comprehensive proposal. No known real world POSH usage in the wild yet.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-map|map]] || Link to a map. Possibly embedded within an adr, hCard, geo or hCalendar. Parsers {{may}} attempt to parse the URL if it is a link to a known map site (e.g. Geohash, Google Maps, Multimap) and extract co-ordinates and other useful data. || (to [[User:TobyInk|TobyInk]] by email)&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-member|member]] || the referenced document represents a member of the group represented by the current document || [[group-brainstorming]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-m_PageScroll2id|m_PageScroll2id]] || JS to scroll to a defined ID || [[group-brainstorming]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-preconnect|preconnect]] || indicates an origin that will be used to fetch required resources. Initiating an early connection, which includes the DNS lookup, TCP handshake, and optional TLS negotiation, allows the user agent to mask the high costs of connection establishment latency.|| [https://igrigorik.github.io/resource-hints/#preconnect resource hints draft]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-prefetch|prefetch]] || indicates the URL and content-type of a resource that is likely to be a required resource when the next action or navigation is triggered. Initiating an early fetch allows the user agent to mask the request latency of the resource and make it available sooner to the application.|| [https://igrigorik.github.io/resource-hints/#prefetch resource hints draft]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-preload|preload]] || indicates the URL and content-type of a resource that should be fetched as early as possible by the user agent. Initiating an early fetch allows the user agent to mask the request latency of the resource and make it available sooner to the application.|| [https://igrigorik.github.io/resource-hints/#preload resource hints draft]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-prerender|prerender]] || indicates the URL of the next navigation target. Initiating a prerender allows the user agent to deliver an instant navigation experience: the user agent downloads the top-level resource and its assets, and performs all of the processing steps required to show the page without actually showing it to the user.|| [https://igrigorik.github.io/resource-hints/#prerender resource hints draft]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-profile|profile]] || indicate[s] that the destination of that hyperlink is a metadata profile (e.g. an [[XMDP]] profile) for the current page or portion thereof || [[xmdp-brainstorming]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-shortlink|shortlink]] || the referenced document represents the current document but with a shorter URL || [http://samj.net/2009/04/introducing-relshort-better-alternative.html blog post]&lt;br /&gt;
|-&lt;br /&gt;
| source || the referenced document represents the source code for the current document or project || [[source-brainstorming]] [http://adactio.com/journal/6667/ blog post]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| vcalendar-parent || link from an event to a containing event || [[User:TobyInk/hcalendar-1.1|hCalendar 1.1 draft]]&lt;br /&gt;
|-&lt;br /&gt;
| vcalendar-child || link from an event to a contained event || [[User:TobyInk/hcalendar-1.1|hCalendar 1.1 draft]]&lt;br /&gt;
|-&lt;br /&gt;
| vcalendar-sibling || link from an event to a related event with the same container || [[User:TobyInk/hcalendar-1.1|hCalendar 1.1 draft]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-status|status]] || the referenced document represents the status (or source of status updates) for the author of this document || [http://monkinetic.com/2009/11/24/status-autodiscovery-relstatus.html blog post]&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== more brainstorming ===&lt;br /&gt;
See also:&lt;br /&gt;
* [[genealogy-brainstorming]] for some thoughts on possible additional values for family relationships (use existing [[XFN]] [[rel-parent|parent]], [[rel-child|child]], [[rel-sibling|sibling]], [[rel-spouse|spouse]], [[rel-kin|kin]] values first though)&lt;br /&gt;
* [[xpn-brainstorming]] for some thoughts on possible additional values for professional relationships (use existing [[XFN]] [[rel-co-worker|co-worker]], [[rel-colleague|colleague]] values first though)&lt;br /&gt;
&lt;br /&gt;
== POSH usage ==&lt;br /&gt;
There are numerous rel values used as [[POSH]], both in the wild, whose origins are not necessarily known, nor are their meanings consistent.  There are also numerous rel values from external proposals of varying degrees of merit.  It is useful to document their existence and summarize their implied meanings/usage intent as research that may be used to perhaps take one or more of them thru the microformats [[process]] if there is both sufficient interest and sufficient in the wild usage.&lt;br /&gt;
&lt;br /&gt;
Note: If a value is missing from this table, it may have either already been promoted by writing it up as a proposal, or demoted by being explicitly dropped. Please check the other tables first before adding to this table.&lt;br /&gt;
&lt;br /&gt;
Note: this list is incomplete, please help complete it from the following sources:&lt;br /&gt;
&lt;br /&gt;
External sources: &lt;br /&gt;
* [http://developer.mozilla.org/about/meta Meta Information in DevMo Docs] (DevMo)&lt;br /&gt;
* [http://wiki.mozilla.org/Microsummaries Microsummary]&lt;br /&gt;
* [http://lachy.id.au/dev/markup/specs/wclr/ Web Communication Link Relationships] (WCLR)&lt;br /&gt;
* [http://www.w3.org/MarkUp/Relationships.html W3C Link Relationship values draft] (LRdraft) - from a draft of the HTML spec circa 1991. &lt;br /&gt;
* [http://www.whatwg.org/specs/web-apps/current-work/multipage/section-links.html#linkTypes HTML5 draft] '''Liable to change'''&lt;br /&gt;
* [http://wiki.foaf-project.org/Autodiscovery FOAF Project Wiki: Autodiscovery] (FOAF)&lt;br /&gt;
* [http://www.apps.ietf.org/rfc/rfc4685.html RFC4685]&lt;br /&gt;
* [http://googlewebmastercentral.blogspot.com/2009/02/specify-your-canonical.html Google Blog]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! summary !! origin !! proposal(s)&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-archive|archive]] || index of archived entries || unknown, perhaps Wordpress open source blogging software || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-archives|archives]] || Provides a link to a collection of records, documents, or other materials of historical interest. ||  || HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|[[rel-author|author]]||see brainstorming above for suggested use by google||unknown || DevMo / HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-canonical|canonical]] || To help search engines disambiguate the same page with multiple representations || Google || [http://googlewebmastercentral.blogspot.com/2009/02/specify-your-canonical.html Google]/[http://www.bing.com/community/blogs/webmaster/archive/2009/02/12/partnering-to-help-solve-duplicate-content-issues.aspx Microsoft]/[http://www.ysearchblog.com/2009/02/12/fighting-duplication-adding-more-arrows-to-your-quiver/ Yahoo!], [http://blog.ask.com/2009/02/ask-is-going-canonical.html Ask Jeeves]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-comment|comment]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-contribution|contribution]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-edituri|EditURI]] &lt;br /&gt;
| Location of the xml-rpc gateway for a Wordpress install that allows external programs to add, edit and delete posts. Used by &amp;quot;[http://codex.wordpress.org/Weblog_Client WordPress blog client]&amp;quot; software for automating posting and updating blog content from your desktop. || Seen in [http://www.wordpress.org/ WordPress], e.g. [http://www.tom-watson.co.uk/].  || Description stubbed in [[rel-edituri]].&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-endorsed|endorsed]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-fan|fan]] || xxxx. || &amp;amp;hellip; || [[hcard-user-profile-authoring]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-feed|feed]] || Gives the address of a syndication feed for the current document. || &amp;amp;hellip; || WCLR/ HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-footnote|footnote]] || Location of the footnote on a link to a footnote. || Markdown preprocessors such as [http://maruku.rubyforge.org/ Maruku] || HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-icon|icon]] || Imports an icon to represent the current document. (Allowed in &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt; only) || [http://dev.w3.org/html5/spec-LC/links.html#rel-icon HTML5] || WCLR/HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-kinetic-stylesheet|kinetic-stylesheet]] || Imports a [http://kssproject.org/ KSS] 'kinetic stylesheet' to bind dynamic behavior to elements || Used in the [http://plone.org Plone] Content Management System || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-lightbox|lightbox]] || Hook - Indicates that following the link will trigger a &amp;quot;lightbox&amp;quot; script (Allowed in &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt; only) || ([http://www.google.co.uk/search?q=rel%3D%22lightbox%22 Google search for rel=lightbox in the wild]) || &amp;amp;hellip; &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-lightbox|lightbox[group_name]]] || Used by lightbox scripts to group different sets of images together.  Images from one group will not appear in another group's lightbox.  See also &amp;quot;lightbox&amp;quot;. || [http://lokeshdhakar.com/projects/lightbox2/#how Lightbox 2] || &amp;amp;hellip; &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-prettyPhoto|prettyPhoto]] || See also &amp;quot;lightbox&amp;quot; || ([http://www.google.fr/search?q=rel%3D%22prettyphoto%22 Google search for rel=&amp;quot;prettyphoto&amp;quot; in the wild]) || &amp;amp;hellip; &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-clearbox|clearbox]] || See also &amp;quot;lightbox&amp;quot; || ([http://www.google.fr/search?q=rel%3D%22clearbox%22 Google search for rel=&amp;quot;clearbox&amp;quot; in the wild]) || &amp;amp;hellip; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-made|made]] || &amp;amp;hellip; || &amp;amp;hellip; || LRdraft&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-meta|meta]] || &amp;amp;hellip; ||  [http://www.w3.org/TR/1999/REC-rdf-syntax-19990222/#transport 1999 W3C RDF syntax REC] || FOAF&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-microsummary|microsummary]]|| &amp;amp;hellip; || &amp;amp;hellip; ||[http://wiki.mozilla.org/Microsummaries Microsummary], be aware of: [[page-summary-formats#Issues_2|microsummary issues]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-noreferrer|noreferrer]] || indicates that no referrer information is to be leaked when following the link. || [http://dev.w3.org/html5/spec-LC/links.html#rel-noreferrer HTML5] || HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-openid-delegate|openid.delegate]] || &amp;amp;hellip; || ([http://www.google.co.uk/search?q=%22rel%3Dopenid%22 Google search for rel=openid.* in the wild]) || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-openid-server|openid.server]] || &amp;amp;hellip; || ([http://www.google.co.uk/search?q=%22rel%3Dopenid%22 Google search for rel=openid.* in the wild]) || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-permalink|permalink]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-pgpkey|pgpkey]] || (see also rel-publickey) || &amp;amp;hellip; || [http://golem.ph.utexas.edu/~distler/blog/archives/000320.html], [http://golem.ph.utexas.edu/~distler/blog/archives/000325.html]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-pingback|pingback]] || Gives the address of the pingback server that handles pingbacks to the current document. (Allowed in &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt; only) || &amp;amp;hellip; || WCLR/ HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-popover|popover]] || Used by a JS widget to display a large, descriptive tooltip. || [http://twitter.github.com/bootstrap Twitter's Bootstrap] [http://twitter.github.com/bootstrap/javascript.html#popovers Popover.js] || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-prefetch|prefetch]] || Specifies that the target resource should be pre-emptively cached. (Allowed in &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt; only) || &amp;amp;hellip; || HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-privacy|privacy]] || Specifies that the target resource is the privacy policy. || &amp;amp;hellip; || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-publickey|publickey]] || (see also rel-pgpkey) || &amp;amp;hellip; || [http://rasterweb.net/raster/2002/12/12/20021212072812/]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-referral|referral]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-related|related]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-replies|replies]] || indicates a continued thread || unknown || [http://www.apps.ietf.org/rfc/rfc4685.html RFC4685]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-resource|resource]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-search|search]] || &amp;amp;hellip; || unknown || unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sitemap|sitemap]] || Links to a site map document. || &amp;amp;hellip; || http://www.sitemaps.org/&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sponsor|sponsor]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-tooltip|tooltip]] || Used by a JS widget to display a tooltip similar (though more customizable) to what is shown by browsers if the 'title' attribute is present. || [http://twitter.github.com/bootstrap Twitter's Bootstrap] [http://twitter.github.com/bootstrap/javascript.html#tooltips Tooltip.js] (and likely other JS tools) || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-trackback|trackback]] || &amp;amp;hellip; || unknown, perhaps open source Movable Type blogging software || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-unendorsed|unendorsed]] || (probably redundant to [[rel-nofollow|nofollow]]) || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-user|user]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-wlwmanifest|wlwmanifest]] || Used by &amp;quot;[http://explore.live.com/windows-live-writer Windows Live Writer],&amp;quot; a Microsoft [http://codex.wordpress.org/Weblog_Client blog client] for automating posting and updating blog content from your desktop. || Seen in [http://www.wordpress.org/ WordPress], e.g. [http://www.tom-watson.co.uk/]. Similar values are probably used by other blog content management systems as well. || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== WCLR ===&lt;br /&gt;
&lt;br /&gt;
The WCLR proposal is described by its author (in e-mail, 2007-09-25) as:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&amp;amp;hellip;now effectively obsolete, since HTML5 and Microformats cover all the worthwhile relationships in that already.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
These are [http://www.whatwg.org/specs/web-apps/current-work/multipage/section-links.html#linkTypes covered by HTML5 already]:&lt;br /&gt;
&lt;br /&gt;
* permalink -&amp;gt; bookmark&lt;br /&gt;
* archive -&amp;gt; archives&lt;br /&gt;
* feed&lt;br /&gt;
* pingback&lt;br /&gt;
* unendorsed -&amp;gt; nofollow&lt;br /&gt;
&lt;br /&gt;
The rest now seem unnecessary.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Nonetheless, there may be some mileage in using them in microformats, at least until HTML5 is widely available.&lt;br /&gt;
&lt;br /&gt;
== Dublin Core ==&lt;br /&gt;
In the past, Dublin Core values have been added to this page in the table about HTML5 features, but no examples, nor an actual specification explicitly stating how the value(s) should be used in HTML could be found. The linked specifications below have been updated so we should start considering Dublin Core values accordingly.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! summary !! source&lt;br /&gt;
|-&lt;br /&gt;
| schema.DC || a specification of all metadata terms maintained by the Dublin Core Metadata Initiative, with regard to the fifteen terms of the Dublin Core Metadata Element Set already published || [http://www.dublincore.org/documents/dcq-html/ Dublin Core]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| schema.DCTERMS || a specification of all metadata terms maintained by the Dublin Core Metadata Initiative, reflecting the changes described more fully in the 2012 document &amp;quot;Maintenance changes to DCMI Metadata Terms&amp;quot; [http://dublincore.org/usage/decisions/2012/dcterms-changes/] || [http://www.dublincore.org/documents/dcq-html/ Dublin Core]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
'''Issues need updating given new information from linked resources.'''&lt;br /&gt;
&lt;br /&gt;
Notes:&lt;br /&gt;
* Dublin Core. This search may help: [http://www.google.co.uk/search?as_q=rel%3Dschema.*&amp;amp;hl=en&amp;amp;num=10&amp;amp;btnG=Google+Search&amp;amp;as_epq=&amp;amp;as_oq=&amp;amp;as_eq=&amp;amp;lr=&amp;amp;as_ft=i&amp;amp;as_filetype=&amp;amp;as_qdr=all&amp;amp;as_occt=any&amp;amp;as_dt=i&amp;amp;as_sitesearch=http%3A%2F%2Fdublincore.org&amp;amp;as_rights=&amp;amp;safe=images]. &lt;br /&gt;
** '''examples from that search only use invisible &amp;lt;code&amp;gt;&amp;amp;lt;link href&amp;amp;gt;&amp;lt;/code&amp;gt; element'''. At first glance it appears the results from the search show only uses with the invisible &amp;lt;code&amp;gt;&amp;amp;lt;link href&amp;amp;gt;&amp;lt;/code&amp;gt; element which is not ideal for content relationships.  Content relationships should be user visible and thus uses with &amp;lt;code&amp;gt;&amp;amp;lt;a href&amp;amp;gt;&amp;lt;/code&amp;gt; are strongly preferred.  &lt;br /&gt;
*** [http://www.ietf.org/rfc/rfc2731.txt RFC2731] defines &amp;lt;code&amp;gt;rel=&amp;quot;schema.AC&amp;quot;&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;rel=&amp;quot;schema.RC&amp;quot;&amp;lt;/code&amp;gt; with the pattern &amp;lt;code&amp;gt;rel=&amp;quot;schema.PREFIX&amp;quot;&amp;lt;/code&amp;gt; as a syntax for defining namespaces for use in meta[@name], *[@rel], *[@rev] and (as per eRDF) *[@class] attributes. A link to a Dublin Core metadata schema is generally not suitable for end users, so &amp;lt;code&amp;gt;&amp;amp;lt;link href&amp;amp;gt;&amp;lt;/code&amp;gt; appears to be more appropriate than &amp;lt;code&amp;gt;&amp;amp;lt;a href&amp;amp;gt;&amp;lt;/code&amp;gt; for those that use Dublin Core metadata schemas.&lt;br /&gt;
*** The scheme proposed above provides metadata namespace declarations. As described by DCMI specifications, such indications '''cannot''' be provided w/o a suitable namespace. In order to give complete pieces of information, the correct description set must be: &amp;lt;code&amp;gt;&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot;&amp;amp;gt;&amp;lt;/code&amp;gt; (for the namespace declaration, followed by) &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.&amp;lt;nowiki&amp;gt;[element]&amp;lt;/nowiki&amp;gt;&amp;quot; content=&amp;quot;&amp;lt;nowiki&amp;gt;[element.value]&amp;lt;/nowiki&amp;gt;&amp;quot;&amp;amp;gt;&amp;lt;/code&amp;gt; for related elements. &lt;br /&gt;
**** Note: [http://purl.org/dc/terms/ schema.DCTERMS] is conventionally related to an upgraded elements list than [http://purl.org/dc/elements/1.1/ schema.DC] and should be preferred as rel values. Both are discussed here for subject completeness) &lt;br /&gt;
** '''proposal to use in content currently only theoretical'''. Thus unfortunately the use of Dublin Core in user visible content like &amp;lt;code&amp;gt;&amp;amp;lt;a href&amp;amp;gt;&amp;lt;/code&amp;gt; appears to be strictly theoretical. See [http://microformats.org/discuss/mail/microformats-discuss/2008-January/011445.html microformats-discuss/2008-January/011445.html] for a proposal to use Dublin Core in user visible content.&lt;br /&gt;
*** '''recent improvements'''. DCMI solves some trouble concerning metadata through the ''description set model''. Some of these informations cannot currently be provided in any standard ways other than DC, namely dates, validity and periodicity. Following this public bug report ([https://www.w3.org/Bugs/Public/show_bug.cgi?format=multiple&amp;amp;id=22520]), the correct namespace declaration for DC and DCTERMS metadata are now considered valid HTML code. We '''must''' encourage this practice both for internal usefulness and for shared practices. &lt;br /&gt;
&lt;br /&gt;
* The Dublin Core document [http://dublincore.org/documents/dc-html/ &amp;quot;Expressing Dublin Core metadata using HTML/XHTML meta and link elements&amp;quot;] is a specification for, and gives examples of, both &amp;lt;link rel=&amp;quot;schema.DC&amp;quot; href=&amp;quot;http://purl.org/dc/elements/1.1/&amp;quot;&amp;gt; and &amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot;&amp;gt;. Note that Dublin Core encourages the use of DCTERMS elements over DC. A list of projects which use Dublin Core metadata is maintained [http://dublincore.org/projects/ here].&lt;br /&gt;
* [http://dublincore.org/documents/dc-html/ &amp;quot;Expressing Dublin Core metadata using HTML/XHTML meta and link elements&amp;quot;] also includes examples of &amp;lt;link rel=&amp;quot;DCTERMS.[element]&amp;quot; href=&amp;quot;&amp;quot;&amp;gt;, where [element] = subject, isReferencedBy, creator, and publisher. The &amp;lt;link&amp;gt; tag is used instead of the &amp;lt;meta&amp;gt; tag whenever the content is a URL. (Note that this use is different from, but related to, &amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;quot;&amp;gt;.) Potentially, ''any'' of the 55 DCTERMS elements could be used in this way, and this could include use in HTML 5.&lt;br /&gt;
** As said before, HTML5 validators now allow the use of &amp;lt;code&amp;gt;&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot;&amp;amp;gt;&amp;lt;/code&amp;gt; for namespace declarations.&lt;br /&gt;
&lt;br /&gt;
* According to DCMI specification linked above, as well as [http://dublincore.org/documents/dc-html/ &amp;quot;Expressing Dublin Core metadata using HTML/XHTML meta and link elements&amp;quot;] documentation, HTML5 @rel attribute proposed values table has been updated. It now includes a subset of DCMI ''/terms/'' namespace properties, more specifically those whose value can (or must) be logically expressed by a resource, so that the &amp;quot;href&amp;quot; attribute value becomes a non-literal value surrogate referring to the resource itself.&lt;br /&gt;
** Elements from ''/elements/1.1/'' namespace have not been included on purpose. According to [http://wiki.dublincore.org/index.php/FAQ/DC_and_DCTERMS_Namespaces &amp;quot;FAQ/DC and DCTERMS Namespaces&amp;quot;], the old namespace is maintained for legacy purposes only and it is not as suitable for non-literal values as the ones denoted by &amp;lt;code&amp;gt;&amp;amp;lt;link&amp;gt;&amp;lt;/code&amp;gt; elements.&lt;br /&gt;
&lt;br /&gt;
== Use with HTTP Link Header ==&lt;br /&gt;
You can also use any of the rel values (that are allowed for link elements) with HTTP Link Headers, &lt;br /&gt;
&lt;br /&gt;
Example: returning a Javascript file with a license (since JS itself has no way to indicate a license)&lt;br /&gt;
&amp;lt;source lang=text&amp;gt;&lt;br /&gt;
Link: &amp;lt;http://creativecommons.org/publicdomain/zero/1.0/&amp;gt;; rel=&amp;quot;license&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For multiple licenses (e.g. CC-SA and GPL), simply use multiple &amp;lt;code&amp;gt;Link:&amp;lt;/code&amp;gt; headers.&lt;br /&gt;
&amp;lt;source lang=text&amp;gt;&lt;br /&gt;
Link: &amp;lt;http://creativecommons.org/licenses/by-sa/3.0/&amp;gt;; rel=&amp;quot;license&amp;quot;&lt;br /&gt;
Link: &amp;lt;http://www.gnu.org/licenses/gpl.html&amp;gt;; rel=&amp;quot;license&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Example: similarly, linking to a copyright statement for an image:&lt;br /&gt;
&amp;lt;source lang=text&amp;gt;&lt;br /&gt;
Link: &amp;lt;http://example.org/copyright.html&amp;gt;; rel=&amp;quot;copyright&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
or providing a brief inline copyright statement:&lt;br /&gt;
&amp;lt;source lang=text&amp;gt;&lt;br /&gt;
Link: &amp;lt;data:text/plain;charset=utf-8,Copyright 2013 ExampleCo, All Rights Reserved.&amp;gt;; rel=&amp;quot;copyright&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== unspecified ==&lt;br /&gt;
Some rel values have been added to this page perhaps in one of the tables above, but no examples, nor an actual specification explicitly stating that the value(s) should be used in the HTML 'rel' attribute could be found. They are listed here in the hopes someone can discover more specific/precise URLs to examples or specifications about them (preferably both).  Until such precise URLs to examples/specs are provided, the values can be treated as they are purely theoretical and thus of little interest.&lt;br /&gt;
&lt;br /&gt;
A simple list here is sufficient.&lt;br /&gt;
&lt;br /&gt;
== non HTML rel values ==&lt;br /&gt;
There are markup languages other than HTML that also have a rel attribute, often based upon the HTML rel attribute.&lt;br /&gt;
It is useful to document some of these other languages and their rel values for both reference purposes, and to provide  background research for the possible development and re-use of these values in HTML, as [[poshformats]] or [[microformats]]&lt;br /&gt;
&lt;br /&gt;
Sources:&lt;br /&gt;
* [[Atom]] [[RFC4287]] specification. &lt;br /&gt;
* See http://www.iana.org/assignments/link-relations.html for more.&lt;br /&gt;
* See [http://amundsen.com/media-types/maze/format/#link-relations Maze+XML]&lt;br /&gt;
* See [http://amundsen.com/media-types/collection/format/#link-relations Collection+JSON]&lt;br /&gt;
* See [http://www.opensearch.org/Specifications/OpenSearch/1.1#Url_rel_values OpenSearch]&lt;br /&gt;
* See [http://tools.ietf.org/html/rfc6861 The Create-Form and Edit-Form Link Relations (RFC6861)]&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! summary&amp;lt;br /&amp;gt;(from the relevant specification where possible)) !! defining specification&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| self&lt;br /&gt;
| From http://www.ietf.org/rfc/rfc4287.txt : &amp;lt;blockquote&amp;gt;The value &amp;quot;self&amp;quot; signifies that the IRI in the value of the href attribute identifies a resource equivalent to the containing element.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
| [[Atom]] http://www.ietf.org/rfc/rfc4287.txt&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| http://gdata.youtube.com/schemas/2007#in-reply-to || See http://code.google.com/apis/youtube/2.0/developers_guide_protocol_comments.html || YouTube extension to Atom&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| collection || Refers to a resource which represents a collection of which the current resource is a member.&lt;br /&gt;
&lt;br /&gt;
When used in the Maze+XML media type, the associated URI returns the available collection of mazes.&lt;br /&gt;
  || Maze+XML, Collection+JSON, OpenSearch&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| east || Refers to a resource to the &amp;quot;east&amp;quot; of the current resource.&lt;br /&gt;
&lt;br /&gt;
When used in the Maze+XML media type, the associated URI points to a neighboring cell resource to the east in the active maze.&lt;br /&gt;
&lt;br /&gt;
 || Maze+XML&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| exit || Refers to a resource that represents the exit or end of the current client actvity or process.&lt;br /&gt;
&lt;br /&gt;
When used in the Maze+XML media type, the associated URI points to the final exit resource of the active maze.&lt;br /&gt;
&lt;br /&gt;
 || Maze+XML&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| north || Refers to a resource that is &amp;quot;north&amp;quot; of the current resource.&lt;br /&gt;
&lt;br /&gt;
When used in the Maze+XML media type, the associated URI points to a neighboring cell resource to the north in the active maze.&lt;br /&gt;
&lt;br /&gt;
 || Maze+XML&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| south || Refers to a resource that is &amp;quot;south&amp;quot; of the current resource.&lt;br /&gt;
&lt;br /&gt;
When used in the Maze+XML media type, the associated URI points to a neighboring cell resource to the south in the active maze.&lt;br /&gt;
&lt;br /&gt;
 || Maze+XML&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-via|via]] || Identifies a resource that is the source of the information in the context. ||  Atom 1.0 Syndication format (RFC 4287)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| west || Refers to a resource that is &amp;quot;west&amp;quot; of the current resource.&lt;br /&gt;
&lt;br /&gt;
When used in the Maze+XML media type, the associated URI points to a neighboring cell resource to the west in the active maze.&lt;br /&gt;
&lt;br /&gt;
 || Maze+XML&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| item || The target IRI points to a resource that is a member of a collection represented by the context IRI. || Collection+JSON&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| create-form || When included in a resource, the &amp;quot;create-form&amp;quot; link relation MAY identify a target resource that represents the form to append a new member to the link context. || See [http://tools.ietf.org/html/rfc6861 The Create-Form and Edit-Form Link Relations (RFC6861)]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| edit-form || When included in a resource, the &amp;quot;edit-form&amp;quot; link relation identifies a target resource that represents the form for editing associated resource. || See [http://tools.ietf.org/html/rfc6861 The Create-Form and Edit-Form Link Relations (RFC6861)]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| lightframe || Opens the target in a lightbox. On inclusion it provides a simple target the lightframe and loads the content in a lightbox effect || Lightbox&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| superbox[image] || jQuery Superbox! is a script which allows you display windows with the lightbox effect. || superbox&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| wp-video-lightbox || wp-video-lightbox! is a rel to anchor tag script display videos with the lightbox effect. || wp-video-lightbox&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| youtube || Opens the target youtube video in using the Swipebox Plugin || Swipebox&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| shadowbox || shadowbox is a jQuery script for images displaying with the &amp;quot;lightbox&amp;quot; effects. || shadowbox&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| permission || When included in a resource, the &amp;quot;permission&amp;quot; link relation MAY identify a target resource that represents the list of entities that can access or modify the resource in the link context. || See [http://cdoc.io/spec.html#permission-link-relation Collection Document Media Type Specification]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| version-history&lt;br /&gt;
| When included on a versioned resource, this link points to a resource containing the version history for this resource.&lt;br /&gt;
| [http://tools.ietf.org/html/rfc5829 RFC 5829]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| latest-version&lt;br /&gt;
| When included on a versioned resource, this link points to a resource containing the latest (e.g., current) version.&lt;br /&gt;
| [http://tools.ietf.org/html/rfc5829 RFC 5829]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| working-copy&lt;br /&gt;
| When included on a versioned resource, this link points to a working copy for this resource.&lt;br /&gt;
| [http://tools.ietf.org/html/rfc5829 RFC 5829]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| working-copy-of&lt;br /&gt;
| When included on a working copy, this link points to the versioned resource from which this working copy was obtained.&lt;br /&gt;
| [http://tools.ietf.org/html/rfc5829 RFC 5829]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| predecessor-version&lt;br /&gt;
| When included on a versioned resource, this link points to a resource containing the predecessor version in the version history.&lt;br /&gt;
| [http://tools.ietf.org/html/rfc5829 RFC 5829]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| successor-version&lt;br /&gt;
| When included on a versioned resource, this link points to a resource containing the successor version in the version history.&lt;br /&gt;
| [http://tools.ietf.org/html/rfc5829 RFC 5829]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| ... || ... || ...&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== dropped ==&lt;br /&gt;
The following rel values were in earlier version(s) of specification(s) and it is presumed by their absence from the most recent version of the respective specification(s) that they have been deprecated or obsoleted. &lt;br /&gt;
&lt;br /&gt;
In general, you {{should not}} use any dropped values.&lt;br /&gt;
&lt;br /&gt;
If any such values have been superceded by standard values (see the first table on this page), then you {{must not}} use the dropped versions.&lt;br /&gt;
&lt;br /&gt;
In particular:&lt;br /&gt;
* if a rel value was in a draft and is missing (without explanation) from the final spec, or&lt;br /&gt;
* if a rel value was in a previous version of and is missing (without explanation) from an update to the specification (even a draft update)&lt;br /&gt;
&lt;br /&gt;
Then absent any other information or explanation, it is presumed that the group/editors working on that specification decided to explicitly drop it (either in development, or in the updated version) and thus it should be obsoleted (not re-registered). &lt;br /&gt;
&lt;br /&gt;
If you wish to add them, please research &amp;lt;em&amp;gt;why&amp;lt;/em&amp;gt; such values were omitted from latter specifications before doing so. If you do discover the reasoning, please add a short statement or link to thereof into the appropriate place in the following table.&lt;br /&gt;
&lt;br /&gt;
If there is more data, e.g. a link to an email of discussion of the spec development that explains ''why'' the rel value was dropped, and it explicitly states, e.g. it was without prejudice, or merely post-poned, or perhaps expected to be spun-out into its spec (or some other explicit positive reason), then it makes to link/cite that explicit text as part of a proposal.&lt;br /&gt;
&lt;br /&gt;
Sources: &lt;br /&gt;
* [http://www.w3.org/MarkUp/html3/ HTML3] (HTML3) / has been superceded by [http://www.w3.org/MarkUp/Wilbur/ HTML 3.2] - which itself has been superceded by [http://www.w3.org/TR/REC-html40 HTML 4.0] - which itself has been updated by [http://w3.org/TR/html401 HTML 4.01], commonly referred to as &amp;quot;HTML 4&amp;quot; in this wiki and other places.)&lt;br /&gt;
* [http://www.w3.org/TR/relations.html Proposed HTML 4.0 link types] (HTML4dropped) - obsoleted/superceded by the HTML 4.0 Recommendation.  Any values that were in the &amp;quot;Proposed HTML 4.0 link types&amp;quot; document but didn't make it into the HTML 4.0 Recommendation were thus explicitly dropped and should be avoided.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! summary !! defining specification !! why dropped &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|[[rel-banner|banner]]||Was used to reference another document to be used as banner for this document (i.e. a form of &amp;quot;include&amp;quot; statement).|| HTML3 ||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-begin|begin]] || identifies the author-defined start of a sequence of documents of which the current document is a node.&lt;br /&gt;
 || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-biblioentry|biblioentry]] || identifies a bibliographic entry || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-bibliography|bibliography]] || identifies a bibliography || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-child|child]] (obsolete/superceded) || the target document is a hierarchical child, or subdocument, of the current document|| HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-citation|citation]] || the target is a bibliographic citation || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-collection|collection]] || the target document is an collection that contains the current document || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-definition|definition]] || identifies a definition of a term || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-disclaimer|disclaimer]] || identifies a hypertext link to a legal disclaimer || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-editor|editor]] || identifies a hypertext link to an editor || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-end|end]] || identifies the author-defined end of a sequence of documents of which the current document is a node. || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-footnote|footnote]] || the anchor is a footnote marker and the target is a footnote || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-navigate|navigate]] || the target document contains information such as a image map that will help users to gain a sense of how and where to found information || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-origin|origin]] || synonym for &amp;lt;code&amp;gt;top&amp;lt;/code&amp;gt; || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-parent|parent]] (obsolete/superceded) || the target document is the hierarchical parent, or container, of the current document|| HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-pointer|pointer]] || the target is a pointer to the real target. This value can be used by a user agent to perform a pre-fetch of the specified target for evaluation until the real target is reached || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-publisher|publisher]] || identifies a hypertext link to a publisher || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sibling|sibling]] (obsolete/superceded) || the target document is a child of a common parent, or a hierarchical peer of the current document|| HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-top|top]] || the target document is the logical top node of the tree (see also &amp;lt;code&amp;gt;begin&amp;lt;/code&amp;gt;) || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-trademark|trademark]] || identifies a hypertext link to a trademark notice || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-translation|translation]] || the target is a translation to another language || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-urc|urc]] || identifies a Universal Resource Citation || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== dropped without prejudice ==&lt;br /&gt;
In one known instance (from HTML4 to HTML5), some rel values were in an earlier version of a specification (or a proposal) and were dropped from a latter (draft) version, and it was noted that these values were dropped with the intent that they could still be proposed in a registry and thus they explicitly were not deprecated or obsoleted. This section documents such values as separate from the [[#dropped|dropped]] section.&lt;br /&gt;
&lt;br /&gt;
In general, you {{should not}} use any dropped values.&lt;br /&gt;
&lt;br /&gt;
If any such values have been superceded by standard values (see the first table on this page), then you {{must not}} use the dropped versions.&lt;br /&gt;
&lt;br /&gt;
Rel values that were dropped without prejudice from a specification will be considered similar to new values that have never been specified.&lt;br /&gt;
&lt;br /&gt;
If you know of additional rel values that were dropped without prejudice from an update to a specification, please cite a URL and quote from the group developing the specification that officially states from that group that the dropping of the values was done without prejudice, or equivalent statement (such as explicit allowance of external registration, proposal, and/or development).&lt;br /&gt;
&lt;br /&gt;
This table serves a historical purpose. If you wish to propose a value from this table, please copy it and leave it in place.&lt;br /&gt;
&lt;br /&gt;
Sources: &lt;br /&gt;
* Several rel values were [http://www.w3.org/Bugs/Public/show_bug.cgi?id=7475#c15 explicitly dropped from HTML5]. Per: [http://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html Issue 118 Decision] ('''emphasis''' added): &amp;lt;blockquote&amp;gt;&amp;lt;p&amp;gt;&amp;quot;The final proposal argues for the removal of some relation values, to wit, it suggests removal of '''index, up, first and last'''. It was pointed out in survey comments that these relations are already registered in the IANA link relation registry. Presumably, '''these relations could also be entered in whatever other registry or registries HTML5 adopts for this purpose'''.&amp;lt;/p&amp;gt;...&amp;lt;p&amp;gt;&amp;quot;Next Steps&amp;lt;/p&amp;gt;...&amp;lt;p&amp;gt;&amp;quot;Since the relations to be removed are already registered at the IANA link relation registry, no further action is needed to include them there. WG members are '''free to register or record these relations elsehwere''' [sic], as well.&amp;quot;&amp;lt;/p&amp;gt;&amp;lt;/blockquote&amp;gt; &lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value&lt;br /&gt;
! summary&lt;br /&gt;
! defining specification&lt;br /&gt;
! why dropped &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-first|first]]&lt;br /&gt;
| synonym for &amp;lt;code&amp;gt;begin&amp;lt;/code&amp;gt;&lt;br /&gt;
| HTML4dropped - never in an official spec&lt;br /&gt;
| [http://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html Explicitly dropped from HTML5 interim draft yet permitted for external registry]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-index|index]]&lt;br /&gt;
| Refers to a document providing an index for the current document.&lt;br /&gt;
| was in [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4]&lt;br /&gt;
| [http://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html Explicitly dropped from HTML5 interim draft yet permitted for external registry]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-last|last]]&lt;br /&gt;
| synonym for &amp;lt;code&amp;gt;end&amp;lt;/code&amp;gt;&lt;br /&gt;
| HTML4dropped - never in an official spec&lt;br /&gt;
| [http://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html Explicitly dropped from HTML5 interim draft yet permitted for external registry]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-up|up]]&lt;br /&gt;
|When the document forms part of a hierarchy, this link references the immediate parent of the current document.&lt;br /&gt;
| was in [http://www.w3.org/MarkUp/html3/dochead.html HTML3] - but [http://www.w3.org/TR/html401/types.html#type-links dropped in HTML4]&lt;br /&gt;
| [http://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html Explicitly dropped from HTML5 interim draft yet permitted for external registry]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
See related [http://dev.w3.org/html5/spec/links.html#linkTypes HTML5: Link types] for existing HTML5 specified rel values.&lt;br /&gt;
&lt;br /&gt;
== rejected ==&lt;br /&gt;
Some rel values have been proposed and rejected.  They are listed here to make that explicit.  Authors {{must not}} use rejected rel values.&lt;br /&gt;
&lt;br /&gt;
Source: [[rejected-formats]].&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! origin / proposal !! why rejected &lt;br /&gt;
|-&lt;br /&gt;
| [[rel-logo|logo]]&lt;br /&gt;
| [http://relogo.org Relogo.org]&lt;br /&gt;
| [[rejected-formats#Logo]]&lt;br /&gt;
|-&lt;br /&gt;
|[[rel-pavatar|pavatar]] || [http://pavatar.com/ pavatar] || [[rejected-formats#Pavatar]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== tools ==&lt;br /&gt;
See [[implementations]].&lt;br /&gt;
&lt;br /&gt;
== addtional external research ==&lt;br /&gt;
Here are some additional historical references to the development or rel-values which may be useful when researching values, especially why specific values may have been proposed but abandoned.&lt;br /&gt;
* 1996-06-07 [http://www.w3.org/MarkUp/draft-ietf-html-relrev-00.txt Hypertext links in HTML] (copies: [http://ftp.ics.uci.edu/pub/ietf/html/draft-ietf-html-relrev-00.txt ftp.ics.uci.edu])&lt;br /&gt;
* 1996-11-13 [http://www.w3.org/Architecture/NOTE-link Describing and Linking Web Resources] &lt;br /&gt;
* 1997-01-23 [http://lists.gnu.org/archive/html/lynx-dev/1997-01/msg00537.html LYNX-DEV Lynx and the LINK tag] &lt;br /&gt;
* 1997-01-24 [http://lists.w3.org/Archives/Public/w3c-sgml-wg/1997Jan/0357.html Taxonomy list] &lt;br /&gt;
* 1997-03-28 [http://www.w3.org/TR/WD-htmllink-970328 W3C Working Draft: Hypertext Links and Meta Information in HTML]&lt;br /&gt;
 &lt;br /&gt;
=== previous attempts at documenting ===&lt;br /&gt;
There have been previous attempts at documenting known rel values, most of which fell out of date due to being dependent on a single author maintaining them. They're listed here purely for historical reasons, and are not sufficient to be references of their own (since they're just individual curations of other references)&lt;br /&gt;
* [http://fantasai.tripod.com/qref/Appendix/LinkTypes/ltdef.html Link Type Definitions Glossary] by fantasai&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== related ==&lt;br /&gt;
{{rel-related-pages}}&lt;br /&gt;
* [[elemental-microformats]]&lt;br /&gt;
* [[existing-rev-values]]&lt;br /&gt;
* [[existing-class-names]]&lt;br /&gt;
&lt;br /&gt;
== copyright ==&lt;br /&gt;
&lt;br /&gt;
{{cc-pd-license}}&lt;/div&gt;</summary>
		<author><name>Andy sky</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=existing-rel-values&amp;diff=64852</id>
		<title>existing-rel-values</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=existing-rel-values&amp;diff=64852"/>
		<updated>2015-03-12T12:44:07Z</updated>

		<summary type="html">&lt;p&gt;Andy sky: /* Dublin Core */ Note about DCTERMS entries&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt; existing rel values &amp;lt;/entry-title&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This page contains tables of known HTML rel values from specifications, formats, proposals, brainstorms, and non-trivial [[POSH]] usage in the wild.  In addition, dropped and rejected values are listed at the end for comprehensiveness.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;usage&amp;quot;&amp;gt;usage&amp;lt;/span&amp;gt;: see [[rel-faq#How_is_rel_used|how is 'rel' used]].  Regarding &amp;lt;span id=&amp;quot;rev&amp;quot;&amp;gt;rev&amp;lt;/span&amp;gt;, see: [[rel-faq#Should_rev_even_be_used|should 'rev' even be used]].&lt;br /&gt;
&lt;br /&gt;
This page is also the official rel registry ([http://www.whatwg.org/specs/web-apps/current-work/multipage/links.html#other-link-types][http://www.w3.org/TR/html5/links.html#other-link-types]). Add new and proposed rel values to the following section:&lt;br /&gt;
* [[existing-rel-values#HTML5_link_type_extensions|HTML5 link type extension]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== formats ==&lt;br /&gt;
These rel values are defined formats from specifications (HTML 4, microformats) are thus are &amp;lt;strong&amp;gt;recommended for general use&amp;lt;/strong&amp;gt;.  Alphabetically ordered by value.&lt;br /&gt;
&lt;br /&gt;
Note:&lt;br /&gt;
* &amp;lt;strong&amp;gt;Do not&amp;lt;/strong&amp;gt; add proposed rel values for HTML5 here, add them to the [[#HTML5_link_type_extensions|HTML5 link type extensions]] table.&lt;br /&gt;
* &amp;lt;strong&amp;gt;Do not&amp;lt;/strong&amp;gt; add rel values you find in the wild to this table of rel formats, instead add them to the table in the [[existing-rel-values#POSH_usage|POSH section]].&lt;br /&gt;
* &amp;lt;strong&amp;gt;Do not&amp;lt;/strong&amp;gt; add non-HTML rel values you find to this table of rel formats, instead add them to the table in the [[existing-rel-values#non_HTML_rel_values|non HTML rel values section]].&lt;br /&gt;
* &amp;lt;strong&amp;gt;Do not&amp;lt;/strong&amp;gt; add rel values from obsolete/superceded proposals or drafts, instead add them to the table in the &amp;quot;dropped&amp;quot; section.&lt;br /&gt;
&lt;br /&gt;
Sources:&lt;br /&gt;
* W3C Recommendations: &lt;br /&gt;
** [http://www.w3.org/TR/html401/types.html#h-6.12 HTML 4.01 section 6.12 Link types] (HTML4 Link types)&lt;br /&gt;
** [http://www.w3.org/TR/grddl/ Gleaning Resource Descriptions from Dialects of Languages] (GRDDL)&lt;br /&gt;
* [[microformats]] specifications&lt;br /&gt;
** [[xfn]]&lt;br /&gt;
** [[rel-license]]&lt;br /&gt;
** [[rel-nofollow]]&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! Keyword&lt;br /&gt;
! Effect on &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt;&lt;br /&gt;
! Effect on &amp;lt;code&amp;gt;a&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;area&amp;lt;/code&amp;gt;&lt;br /&gt;
! Brief description &amp;lt;br /&amp;gt;(from the relevant specification where possible)&lt;br /&gt;
! Link to defining specification&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-acquaintance|acquaintance]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the person represented by the current document considers the person represented by the referenced document to be an acquaintance&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-alternate|alternate]]&lt;br /&gt;
| external resource&lt;br /&gt;
| external relation&lt;br /&gt;
| Designates substitute versions for the document in which the link occurs. When used together with the &amp;lt;code&amp;gt;lang&amp;lt;/code&amp;gt; attribute, it implies a translated version of the document. When used together with the &amp;lt;code&amp;gt;media&amp;lt;/code&amp;gt; attribute, it implies a version designed for a different medium (or media). &lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-appendix|appendix]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document serving as an appendix in a collection of documents. &lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-bookmark|bookmark]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a bookmark. A bookmark is a link to a key entry point within an extended document. The &amp;lt;code&amp;gt;title&amp;lt;/code&amp;gt; attribute may be used, for example, to label the bookmark. Note that several bookmarks may be defined in each document. &lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-chapter|chapter]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document serving as a chapter in a collection of documents.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-child|child]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is a child of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-colleague|colleague]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is a colleague of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-contact|contact]] &lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the person represented by the current document considers the person represented by the referenced document to be a contact&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-contents|contents]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document serving as a table of contents. Some user agents also support the synonym ToC (from &amp;quot;Table of Contents&amp;quot;).&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-copyright|copyright]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a copyright statement for the current document.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-co-resident|co-resident]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person lives in the same residence as the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-co-worker|co-worker]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is a co-worker of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-crush|crush]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| this person considers the referenced person to be a crush (i.e. has a crush on the referenced person)&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-date|date]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| this person considers the referenced person to be a date (i.e. is dating the referenced person)&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-friend|friend]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the person represented by the current document considers the person represented by the referenced document to be a friend&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-glossary|glossary]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document providing a list of terms and their definitions that pertain to the current document.||[http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-help|help]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document offering help (more information, links to other sources information, etc.)&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-its-rules|its-rules]]&lt;br /&gt;
| allowed&lt;br /&gt;
| not allowed&lt;br /&gt;
| Refers to a document with external ITS rules.&lt;br /&gt;
| [http://www.w3.org/TR/its20/#selection-global-html5 Internationalization Tag Set (ITS) Version 2.0]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-kin|kin]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is part of the extended family of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-license|license]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| &amp;amp;hellip;indicates that the &amp;lt;nowiki&amp;gt;[referenced document]&amp;lt;/nowiki&amp;gt; is a license for the current page.&lt;br /&gt;
| [[rel-license]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-me|me]]&lt;br /&gt;
| external relation&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced document represents the same person as does the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-met|met]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| this person has met the referenced person&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-muse|muse]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person inspires the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-neighbor|neighbor]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person lives nearby the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-next|next]]&lt;br /&gt;
| external relation&lt;br /&gt;
| external relation&lt;br /&gt;
| Refers to the next document in a linear sequence of documents. User agents may choose to preload the &amp;quot;next&amp;quot; document, to reduce the perceived load time.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-nofollow|nofollow]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| indicates that the destination of that hyperlink {{should-not}} be afforded any additional weight or ranking by user agents which perform link analysis upon web pages (e.g. search engines).&lt;br /&gt;
| [[rel-nofollow]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-parent|parent]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is a parent of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-prev|prev]]&lt;br /&gt;
| external relation&lt;br /&gt;
| external relation&lt;br /&gt;
| Refers to the previous document in an ordered series of documents. Some user agents also support the synonym &amp;quot;Previous&amp;quot;.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-previous|previous]]&lt;br /&gt;
| external relation&lt;br /&gt;
| external relation&lt;br /&gt;
| Synonym of &amp;lt;code&amp;gt;prev&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-section|section]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document serving as a section in a collection of documents.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sibling|sibling]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is a sibling of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-spouse|spouse]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is a spouse of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-start|start]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to the first document in a collection of documents. This link type tells search engines which document is considered by the author to be the starting point of the collection.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-stylesheet|stylesheet]]&lt;br /&gt;
| external resource&lt;br /&gt;
| not allowed&lt;br /&gt;
| a style sheet for the current document&amp;lt;br /&amp;gt; used with the invisible &amp;lt;link href&amp;gt; element which is not ideal for content relationships. Content relationships should be user visible and thus uses with &amp;lt;a href&amp;gt; are strongly preferred. Unfortunately the use of stylesheet in user visible content like &amp;lt;a href&amp;gt; appears to be strictly theoretical.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-subsection|subsection]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document serving as a subsection in a collection of documents.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sweetheart|sweetheart]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| this person considers the referenced person to be their sweetheart&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-tag|tag]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| &amp;amp;hellip;indicates that the &amp;lt;nowiki&amp;gt;[referenced document]&amp;lt;/nowiki&amp;gt; is an author-designated &amp;quot;tag&amp;quot; (or keyword/subject) for the current page.&lt;br /&gt;
| [[rel-tag]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-toc|toc]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Synonym of &amp;lt;code&amp;gt;contents&amp;lt;/code&amp;gt; (from &amp;quot;Table Of Contents&amp;quot;)&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-transformation|transformation]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Relates a source document to a transformation, usually represented in XSLT, that relates the source document syntax to the RDF graph syntax. Used in [[grddl|GRDDL]]&lt;br /&gt;
| [http://www.w3.org/TR/grddl/#transformation GRDDL] &lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== notes ===&lt;br /&gt;
*&amp;lt;code&amp;gt;rel=&amp;quot;alternate&amp;quot;&amp;lt;/code&amp;gt; can take further meaning from additional attributes, such as &lt;br /&gt;
** &amp;lt;code&amp;gt;rel=&amp;quot;alternate&amp;quot; lang=&amp;quot;fr&amp;quot;&amp;lt;/code&amp;gt; (French language version of this page)&lt;br /&gt;
** &amp;lt;code&amp;gt;rel=&amp;quot;alternate&amp;quot; media=&amp;quot;print&amp;quot;&amp;lt;/code&amp;gt; (printable version of this page)&lt;br /&gt;
** &amp;lt;code&amp;gt;rel=&amp;quot;alternate&amp;quot; media=&amp;quot;handheld&amp;quot;&amp;lt;/code&amp;gt; (version of the page intended or better for handheld/portable devices like PDAs, cell phones, etc.)&lt;br /&gt;
&lt;br /&gt;
*Synonyms such as &amp;quot;previous&amp;quot;, &amp;quot;toc&amp;quot; are not as widely supported as the main term.&lt;br /&gt;
&lt;br /&gt;
== proposals ==&lt;br /&gt;
A few rel values have been developed as drafts as a result of going through most of the microformats [[process]], and are thus listed here for your serious consideration. You &amp;lt;strong&amp;gt;may use these values&amp;lt;/strong&amp;gt;, and if you find any problems with them please point them out on the respective &amp;quot;issues&amp;quot; page for the rel value.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! summary !! proposed in !! external spec (if any)&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-pronunciation|pronunciation]] || &amp;amp;hellip;indicates that the destination of the 'link' element is a document providing a pronunciation lexicon for speech-synthesis purposes. || [[rel-pronunciation]]&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-directory|directory]] || &amp;amp;hellip;indicates that the destination of the hyperlink is a directory listing containing an entry for the current page. || [[rel-directory]]&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-enclosure|enclosure]] || &amp;amp;hellip;indicates that the destination of that hyperlink is intended to be downloaded and cached. || [[rel-enclosure]] || [http://www.apps.ietf.org/rfc/rfc4287.html RFC4287]&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-home|home]] || &amp;amp;hellip;indicates that the &amp;lt;nowiki&amp;gt;[referenced document]&amp;lt;/nowiki&amp;gt; is the homepage of the site in which the current page appears. || [[rel-home]]&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-payment|payment]] || &amp;amp;hellip;indicates that the destination of the hyperlink provides a way to show or give support (e.g. financial) for the current page|| [[rel-payment]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== HTML5 link type extensions ==&lt;br /&gt;
&lt;br /&gt;
The following values are registered as link type extensions per the [http://www.whatwg.org/specs/web-apps/current-work/multipage/links.html#other-link-types requirements in the WHATWG HTML spec] and the [http://dev.w3.org/html5/spec/links.html#other-link-types requirements in the W3C HTML5 spec]. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Before you register a new value:&lt;br /&gt;
* '''Please check the [[#formats|Formats table]] and DO NOT re-register''' rel values that are already there. Please note that the W3C HTML WG has made a [http://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html Decision] to drop &amp;lt;code&amp;gt;index&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;up&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;first&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;last&amp;lt;/code&amp;gt; from the HTML5 spec itself.&lt;br /&gt;
* '''Please check the [[#dropped|Dropped table]] and DO NOT register''' values that are already there. If you believe a rel value was dropped from another specification without prejudice, please provide link/cite to explicit text/decision stating as such, e.g. the value was merely postponed, or perhaps expected to be spun-out into its own spec from the group developing that specification.&lt;br /&gt;
&lt;br /&gt;
Note that entries in the [[#formats|Formats table]] and entries that are already in HTML5 as built-in keywords are also considered extensions with the &amp;quot;Ratified&amp;quot; status.&lt;br /&gt;
&lt;br /&gt;
Please make sure that registrations added here have all the required data filled in ''including'':&lt;br /&gt;
* &amp;quot;Effect on link&amp;quot;&lt;br /&gt;
* &amp;quot;Effect on a and area&amp;quot; and &lt;br /&gt;
* a link to a spec that documents the keyword ''as an HTML &amp;lt;code&amp;gt;rel&amp;lt;/code&amp;gt; keyword''. (A spec that merely defines the file format of the link target but does not define the &amp;lt;code&amp;gt;rel&amp;lt;/code&amp;gt; keyword for use in HTML is not the kind of spec that is being required here.)&lt;br /&gt;
&lt;br /&gt;
Entries lacking any of the above required data will likely be removed. &lt;br /&gt;
&lt;br /&gt;
Changes to this registry will not be reflected in validators in real time. But validators will typically get automatically updated with the changes within one week or so&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! Keyword&lt;br /&gt;
! Effect on &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt;&lt;br /&gt;
! Effect on &amp;lt;code&amp;gt;a&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;area&amp;lt;/code&amp;gt;&lt;br /&gt;
! Brief description&lt;br /&gt;
! Link to specification&lt;br /&gt;
! Synonyms&lt;br /&gt;
! Status&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-apple-touch-icon|apple-touch-icon]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specify a Webpage Icon for a “Web Clip”, or “touch icon”, for mobile devices (not limited to Apple devices).&lt;br /&gt;
| [http://developer.apple.com/library/safari/#documentation/appleapplications/reference/safariwebcontent/configuringwebapplications/configuringwebapplications.html Apple's Safari Web Content Guide]&lt;br /&gt;
| probably redundant with rel=icon&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-apple-touch-icon-precomposed|apple-touch-icon-precomposed]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specify a Webpage Icon for a “Web Clip”, or “touch icon”, for mobile devices (not limited to Apple devices).&lt;br /&gt;
| [http://developer.apple.com/library/safari/#documentation/appleapplications/reference/safariwebcontent/configuringwebapplications/configuringwebapplications.html Apple's Safari Web Content Guide]&lt;br /&gt;
| probably redundant with rel=icon&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-apple-touch-startup-image|apple-touch-startup-image]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specify a splashscreen for Web apps on iOS Safari &lt;br /&gt;
| [http://developer.apple.com/library/safari/#documentation/appleapplications/reference/safariwebcontent/configuringwebapplications/configuringwebapplications.html Apple's Safari Web Content Guide]&lt;br /&gt;
| maybe redundant with rel=icon with the sizes attribute?&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-attachment|attachment]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| The resource linked to is &amp;quot;attached&amp;quot; to this document, similar to email attachments. Used in WordPress.&lt;br /&gt;
| No formal specification&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[WPVL_PRETTYPHOTO_REL]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Open lightbox with video&lt;br /&gt;
| No formal specification&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-authorization_endpoint|authorization_endpoint]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specify a hosted authorization server&lt;br /&gt;
| [http://indiewebcamp.com/distributed-indieauth  distributed IndieAuth documentation]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-canonical|canonical]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specifies the canonical URL for the current document in order to help avoid duplicate content.&lt;br /&gt;
| [http://en.wikipedia.org/wiki/Canonical_meta_tag Canonical meta tag] [http://www.Google.com/support/webmasters/bin/answer.py?answer=139066#2 Canonicalization at Google Webmaster Central] [http://www.Bing.com/community/site_blogs/b/webmaster/archive/2009/02/12/partnering-to-help-solve-duplicate-content-issues.aspx Microsoft Webmaster Center] [http://www.YSearchBlog.com/2009/02/12/fighting-duplication-adding-more-arrows-to-your-quiver/ Yahoo! Search Blog]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-category|category]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to a category assigned to the current document or post. Implemented by WordPress for indicating a relation between a blog post and a category.&lt;br /&gt;
| [[rel-category]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-component|component]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specify an HTML document that is treated as a component of this document.&lt;br /&gt;
| [https://dvcs.w3.org/hg/webcomponents/raw-file/tip/spec/components/index.html Web Components]&lt;br /&gt;
| &lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-chrome-webstore-item|chrome-webstore-item]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Link tag to declare for app and extensions inline installations hosted in the Chrome Web Store.&lt;br /&gt;
| [https://developers.google.com/chrome/web-store/docs/inline_installation Using Inline Installation]&lt;br /&gt;
| &lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#conformsTo|DCTERMS.conformsTo]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| An established standard to which the described resource conforms. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
| It may be replaced by the literal value in form of &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.conformsTo&amp;quot; content=&amp;quot;...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#contributor|DCTERMS.contributor]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| An entity responsible for making contributions to the resource. Examples include a person, an organization, or a service. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
| It may be replaced by the literal value in form of &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.contributor&amp;quot; content=&amp;quot;...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#creator|DCTERMS.creator]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| An entity primarily responsible for making the resource. Examples include a person, an organization, or a service. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
| It may be replaced by the literal value in form of &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.creator&amp;quot; content=&amp;quot;...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#description|DCTERMS.description]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| An account of the resource. Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource.  &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
| It may be replaced by the literal value in form of &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.description&amp;quot; content=&amp;quot;...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#hasFormat|DCTERMS.hasFormat]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that is substantially the same as the pre-existing described resource, but in another format.  &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#hasPart|DCTERMS.hasPart]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that is included either physically or logically in the described resource.  &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#hasVersion|DCTERMS.hasVersion]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that is a version, edition, or adaptation of the described resource.  &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#identifier|DCTERMS.identifier]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| An unambiguous reference to the resource within a given context.  &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
| It may be replaced by the literal value in form of &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.identifier&amp;quot; content=&amp;quot;...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#isFormatOf|DCTERMS.isFormatOf]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that is substantially the same as the described resource, but in another format.  &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#isPartOf|DCTERMS.isPartOf]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource in which the described resource is physically or logically included.  &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#isReferencedBy|DCTERMS.isReferencedBy]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that references, cites, or otherwise points to the described resource. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#isReplacedBy|DCTERMS.isReplacedBy]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that supplants, displaces, or supersedes the described resource. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#isRequiredBy|DCTERMS.isRequiredBy]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that requires the described resource to support its function, delivery, or coherence. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#isVersionOf|DCTERMS.isVersionOf]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource of which the described resource is a version, edition, or adaptation.	&amp;lt;br /&amp;gt;Changes in version imply substantive changes in content rather than differences in format. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#license|DCTERMS.license]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A legal document giving official permission to do something with the resource. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
| It may be replaced by the literal value in form of &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.license&amp;quot; content=&amp;quot;...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#mediator|DCTERMS.mediator]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| An entity that mediates access to the resource and for whom the resource is intended or useful. In an educational context, a mediator might be a parent, teacher, teaching assistant, or care-giver. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
| It may be replaced by the literal value in form of &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.mediator&amp;quot; content=&amp;quot;...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#publisher|DCTERMS.publisher]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| An entity responsible for making the resource available. Examples include a person, an organization, or a service. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
| It may be replaced by the literal value in form of &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.publisher&amp;quot; content=&amp;quot;...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#references|DCTERMS.references]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that is referenced, cited, or otherwise pointed to by the described resource. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#relation|DCTERMS.relation]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#replaces|DCTERMS.replaces]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that is supplanted, displaced, or superseded by the described resource. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#requires|DCTERMS.requires]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that is required by the described resource to support its function, delivery, or coherence. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#rightsHolder|DCTERMS.rightsHolder]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A person or organization owning or managing rights over the resource. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
| It may be replaced by the literal value in form of &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.rightsHolder&amp;quot; content=&amp;quot;...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#source|DCTERMS.source]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource from which the described resource is derived. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#subject|DCTERMS.subject]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| The topic of the resource. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-disclosure|disclosure]]&lt;br /&gt;
| Not allowed&lt;br /&gt;
| External Resource&lt;br /&gt;
| The 'disclosure' Link Relation Type designates a list of patent disclosures or a particular patent disclosure itself made with respect to material for which such relation type is specified.&lt;br /&gt;
| [http://tools.ietf.org/html/draft-yevstifeyev-disclosure-relation The 'disclosure' Link Relation Type]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-discussion|discussion]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to discussion of the current document or post.&lt;br /&gt;
| [[rel-discussion]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dns-prefetch|dns-prefetch]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Tells the browser to perform dns lookup for host names ahead of use.&lt;br /&gt;
| [https://developer.mozilla.org/En/Controlling_DNS_prefetching Mozilla documentation] [http://dev.chromium.org/developers/design-documents/dns-prefetching Google documentation]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-edit|edit]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Tells the browser where the current page can be edited&lt;br /&gt;
| [http://universaleditbutton.org/Registered_MIME_type#Alternate_Linking_Scheme Universal Edit Button Alternate Linking Scheme].  Implemented in at least [http://mediawiki.org MediaWiki].&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-edituri|EditURI]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A blogging auto discovery value, commonly used by WordPress&lt;br /&gt;
| [http://bitworking.org/projects/atom/draft-gregorio-09.html#Edit AtomAPI]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-enclosure|enclosure]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| External Resource&lt;br /&gt;
| Indicates that the referred resource is intended to be downloaded and cached.&lt;br /&gt;
| [[rel-enclosure]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-entry-content|entry-content]]&lt;br /&gt;
| Not allowed&lt;br /&gt;
| External Resource&lt;br /&gt;
| Indicates that the referenced document is an alternative display source for an Internet Explorer Web Slice.&lt;br /&gt;
| [http://msdn.microsoft.com/en-us/library/cc304073(VS.85).aspx#_alternative Web Slice format specification 0.9]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-external|external]]&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Indicates that the referenced document is not part of the same site as the current document.&lt;br /&gt;
| [[rel-external]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-home|home]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to the top level document for the current document. It can be combined with 'alternate' to indicate a feed for the site of the current page.&lt;br /&gt;
| [[rel-home]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-hub|hub]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to a hub that enables registration for notification of updates to the current page.&lt;br /&gt;
| [http://pubsubhubbub.googlecode.com/svn/trunk/pubsubhubbub-core-0.3.html#discovery PubSubHubbub Spec]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-in-reply-to|in-reply-to]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to an original post that the current page is a comment on or reply to.&lt;br /&gt;
| [[rel-in-reply-to]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-index|index]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to a document providing a list of topics with pointers that pertain to the current document.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-indieauth|indieauth]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| the IndieAuth server for the relying party to contact for IndieAuth authentication&lt;br /&gt;
| [http://spec.indieauth.com/ IndieAuth specification]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-issues|issues]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to issues regarding the current document or specification.&lt;br /&gt;
| [[rel-discussion]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-lightbox|lightbox]]&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Img Pop-Up&lt;br /&gt;
| Images with this attribute are displayed in a larger way than embedded in a website (or how you specified it) when clicked (e.g. with installed &amp;quot;Lightbox 2&amp;quot;-Plugin). When adding [group] to rel=&amp;quot;lightbox&amp;quot; all images get a clickable button for next/prev; insert into &amp;lt;code&amp;gt;&amp;amp;lt;a rel=&amp;quot;lightbox[group]&amp;quot;&amp;gt;&amp;amp;lt;img src=&amp;quot;http:example.com/img.jpg&amp;quot;&amp;gt;&amp;amp;lt;/a&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://lokeshdhakar.com/projects/lightbox2/ Lightbox 2] (needs actual specification to be kept in this list, this link is just documentation of one implementation)&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-manifest|manifest]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Imports or links to a manifest&lt;br /&gt;
| [http://w3c.github.io/manifest/#linking W3C Manifest for web application]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-meta|meta]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| External metadata about the HTML document&lt;br /&gt;
| [http://www.w3.org/TR/2004/REC-rdf-syntax-grammar-20040210/#section-rdf-in-HTML W3C's RDF/XML Syntax Specification]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-indieauth|micropub]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| the micropub endpoint for creating new posts&lt;br /&gt;
| [http://indiewebcamp.com/micropub  Micropub scecification]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-openid.delegate|openid.delegate]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| When the page that contains the link is used as an OpenID indentifier, the relying party perform sOpenID 1.1 authentication with the link target as the identifier instead. &lt;br /&gt;
| [http://openid.net/specs/openid-authentication-1_1.html#delegating_authentication OpenID Authentication 1.1]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-openid.server|openid.server]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| The OpenID server for the relying party to contact for OpenID 1.1 authentication&lt;br /&gt;
| [http://openid.net/specs/openid-authentication-1_1.html#anchor4 OpenID Authentication 1.1]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-openid2.local_id|openid2.local_id]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| When the page that contains the link is used as an OpenID indentifier, the relying party perform sOpenID 2.0 authentication with the link target as the identifier instead. &lt;br /&gt;
| [http://openid.net/specs/openid-authentication-2_0.html#rfc.section.7.3.3 OpenID Authentication 2.0]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-openid2.provider|openid2.provider]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| The OpenID server for the relying party to contact for OpenID 2.0 authentication&lt;br /&gt;
| [http://openid.net/specs/openid-authentication-2_0.html#rfc.section.7.3.3 OpenID Authentication 2.0]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-p3pv1|p3pv1]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| References a machine-readable privacy policy description in the P3P format&lt;br /&gt;
| [http://www.w3.org/TR/P3P/#syntax_link P3P spec]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-pgpkey|pgpkey]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Associates a PGP key with a Web page so that the Web page URL can be used as the commenter's URL in PGP-signed blog comments and the blogging system receiving the comment can fetch the key and verify the signature as belonging to the owner of the URL.&lt;br /&gt;
| [http://golem.ph.utexas.edu/~distler/blog/archives/000320.html PGP-Signed Comments]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-pingback|pingback]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| gives the address of the pingback server that handles pingbacks to the current document&lt;br /&gt;
| [http://www.hixie.ch/specs/pingback/pingback Pingback]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-prerender|prerender]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| External Resource&lt;br /&gt;
| Prerenders the Web page targeted by the link including running it scripts.&lt;br /&gt;
| [[rel-prerender]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-profile|profile]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Contextual External Resource &lt;br /&gt;
| indicate[s] that the destination of that hyperlink is a metadata profile (e.g. an [[XMDP]] profile) for the current page or portion thereof. See also [[xmdp-brainstorming]].&lt;br /&gt;
| [http://microformats.org/wiki/rel-profile rel-profile]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-publisher|publisher]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| External Resource &lt;br /&gt;
| Indicates that the referenced document is a metadata profile (e.g., a social-media/real-name profile such as a Google+ profile) for the publisher of the current page, or some portion of the current page.&lt;br /&gt;
| [https://support.google.com/plus/answer/1713826?hl=en Google help page]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-rendition|rendition]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| External Resource&lt;br /&gt;
| Indicates some example rendering, interpretation, or depiction of the source. User agents may choose to execute, display, or render the target in-place; or navigate to the target.&lt;br /&gt;
| [http://www.globalmentor.com/specs/html-rel-rendition/ HTML rel rendition]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-reply-to|reply-to]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| indicates any mailbox(es) (i.e. email addresses) to which responses are to be sent. ''Note: this is distinct from the 'in-reply-to' value which refers to the originating document, not to the address where comments should be sent.&lt;br /&gt;
| [http://tools.ietf.org/html/rfc2822 RFC2822] (originally [http://tools.ietf.org/html/rfc822#section-4.4.3 RFC822])&lt;br /&gt;
|&lt;br /&gt;
| ratified&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-service|service]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Atom Publishing Protocol editing service autodiscovery.&lt;br /&gt;
| [http://wiki.whatwg.org/wiki/ServiceRelExtension Documentation on the WHATWG wiki]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-shortlink|shortlink]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specifies the preferred shortened URL for the page.&lt;br /&gt;
| [http://code.google.com/p/shortlink/wiki/Specification shortlink spec]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sidebar|sidebar]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Indicates that the referenced document is intended to be shown in a secondary browsing context.&lt;br /&gt;
| [[rel-sidebar]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sitemap|sitemap]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Provides a link to an XML document describing the layout of the site.&lt;br /&gt;
| [[rel-sitemap]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-subresource|subresource]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| An external resource intended for use within the current page.&lt;br /&gt;
| [http://www.chromium.org/spdy/link-headers-and-server-hint/link-rel-subresource Chromium documentation]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-syndication|syndication]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to a page which is a syndicated copy of the current page.&lt;br /&gt;
| [[rel-syndication]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-timesheet|timesheet]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Applies a timesheet to the document.&lt;br /&gt;
| [http://www.w3.org/TR/timesheets/#smilTimesheetsNS-Elements-Timesheet non-normative section in the Timesheet spec]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-token_endpoint|token_endpoint]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specify an HTTP endpoint that micropub clients can use to obtain an access token given an authorization code&lt;br /&gt;
| [http://indiewebcamp.com/token-endpoint token endpoint documentation]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-webmention|webmention]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| gives the address of the webmention endpoint that handles webmentions to the current document&lt;br /&gt;
| [http://webmention.org/ WebMention specification]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-widget|widget]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| External Resource&lt;br /&gt;
| Autodiscovery for W3C widgets&lt;br /&gt;
| [http://dev.w3.org/2006/waf/widgets/Overview.html#linking-to-a-widget-package-from-a-html- non-normative section in the Widget packaging spec]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-wlwmanifest|wlwmanifest]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Windows Live Writer manifest autodiscovery&lt;br /&gt;
| [http://msdn.microsoft.com/en-us/library/bb463263.aspx documentation on MSDN]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-image_src|image_src]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specify a Webpage Icon for use by Facebook, Yahoo, Digg, etc.&lt;br /&gt;
| Unknown, but see for instance [http://www.niallkennedy.com/blog/2009/03/enhanced-social-share.html this]&lt;br /&gt;
| probably redundant with rel=icon&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-cmis-acl|http://docs.oasis-open.org/ns/cmis/link/200908/acl]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| External Resource&lt;br /&gt;
| Identifies the resource containing a CMIS ACL document for the link context&lt;br /&gt;
| [http://docs.oasis-open.org/cmis/CMIS/v1.0/cs01/cmis-spec-v1.0.html#_Toc243905525 CMIS 1.0, Section 3.4.3.4]&lt;br /&gt;
| &lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-stylesheet/less|stylesheet/less]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Less CSS framework stylesheets.&lt;br /&gt;
| [http://lesscss.org/#-client-side-usage Less CSS usage]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== brainstorming ==&lt;br /&gt;
Several rel values are being brainstormed as potential microformats and are thus listed here. If you find you have a use for such semantics in real world examples, &amp;lt;strong&amp;gt;consider trying out&amp;lt;/strong&amp;gt; these values and provide feedback on the respective brainstorming page(s) with your results and experiences.&lt;br /&gt;
&lt;br /&gt;
You may list new proposed rel values here, and even better if you can list and link to POSH uses in the wild.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! summary !! brainstormed in and usage in the wild&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-accessibility|accessibility]] || indicate[s] that the destination of that hyperlink contains accessibility information for the current page. || [http://www.brucelawson.co.uk/2009/rel-accessibility/ blog post] which itself uses the rel value in a &amp;amp;lt;link&amp;amp;gt; tag in the head of the document.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-author|author]] || indicate[s] that the destination of that hyperlink represents the author of the current page. Combines with [[rel-me|rel-me]] to chain authorship information. || Google has said it will index rel-Author in this [http://googlewebmastercentral.blogspot.com/2011/06/authorship-markup-and-web-search.html blog post], with further [http://www.google.com/support/webmasters/bin/answer.py?answer=1229920 discussion of the rel-me connection] See also [http://dev.w3.org/html5/spec/Overview.html#link-type-author the HTML5 spec]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-bibliography|bibliography]] || indicate[s] that the destination of that hyperlink is a bibliography for the current page. || [http://microformats.org/discuss/mail/microformats-discuss/2007-October/010863.html mailing list post, 2007-10-15]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-cite|cite]] || indicate[s] that the destination of that hyperlink is an authoritative source or a precedent to the current page. || [[distributed-conversation-brainstorming]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-group|group]] || the referenced document represents a group to which the person represented by the current document belongs || [[group-brainstorming]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-jslicense|jslicense]]&lt;br /&gt;
| Refers to a document with JavaScript source code and license information (also called a [http://www.gnu.org/licenses/javascript-labels.html JavaScript License Web Labels] page). We might want choose a keyword for this that is more general -- there are many situations besides JavaScript in which it is desirable or required by license agreements (e.g., GNU GPL) to make an offer of both the source code and a copy of a license when distributing object code versions of a given work.&lt;br /&gt;
|* Brainstorming page -- thoughts on the name?&lt;br /&gt;
* Ex. [http://www.eff.org EFF.org] (on &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt;) &lt;br /&gt;
* Ex. [http://www.fsf.org FSF.org] (on &amp;lt;code&amp;gt;a&amp;lt;/code&amp;gt;)&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;span id=&amp;quot;longdesc&amp;quot;&amp;gt;[[rel-longdesc|longdesc]]&amp;lt;/span&amp;gt; || Alternative to the img longdesc attribute, for use on visible links || [http://www.google.com/search?q=rel%3D%22longdesc%22 Google search for rel=longdesc in the wild] shows many sources of proposals. Please edit this to list the earliest and perhaps most recent/comprehensive proposal. No known real world POSH usage in the wild yet.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-map|map]] || Link to a map. Possibly embedded within an adr, hCard, geo or hCalendar. Parsers {{may}} attempt to parse the URL if it is a link to a known map site (e.g. Geohash, Google Maps, Multimap) and extract co-ordinates and other useful data. || (to [[User:TobyInk|TobyInk]] by email)&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-member|member]] || the referenced document represents a member of the group represented by the current document || [[group-brainstorming]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-m_PageScroll2id|m_PageScroll2id]] || JS to scroll to a defined ID || [[group-brainstorming]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-preconnect|preconnect]] || indicates an origin that will be used to fetch required resources. Initiating an early connection, which includes the DNS lookup, TCP handshake, and optional TLS negotiation, allows the user agent to mask the high costs of connection establishment latency.|| [https://igrigorik.github.io/resource-hints/#preconnect resource hints draft]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-prefetch|prefetch]] || indicates the URL and content-type of a resource that is likely to be a required resource when the next action or navigation is triggered. Initiating an early fetch allows the user agent to mask the request latency of the resource and make it available sooner to the application.|| [https://igrigorik.github.io/resource-hints/#prefetch resource hints draft]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-preload|preload]] || indicates the URL and content-type of a resource that should be fetched as early as possible by the user agent. Initiating an early fetch allows the user agent to mask the request latency of the resource and make it available sooner to the application.|| [https://igrigorik.github.io/resource-hints/#preload resource hints draft]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-prerender|prerender]] || indicates the URL of the next navigation target. Initiating a prerender allows the user agent to deliver an instant navigation experience: the user agent downloads the top-level resource and its assets, and performs all of the processing steps required to show the page without actually showing it to the user.|| [https://igrigorik.github.io/resource-hints/#prerender resource hints draft]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-profile|profile]] || indicate[s] that the destination of that hyperlink is a metadata profile (e.g. an [[XMDP]] profile) for the current page or portion thereof || [[xmdp-brainstorming]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-shortlink|shortlink]] || the referenced document represents the current document but with a shorter URL || [http://samj.net/2009/04/introducing-relshort-better-alternative.html blog post]&lt;br /&gt;
|-&lt;br /&gt;
| source || the referenced document represents the source code for the current document or project || [[source-brainstorming]] [http://adactio.com/journal/6667/ blog post]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| vcalendar-parent || link from an event to a containing event || [[User:TobyInk/hcalendar-1.1|hCalendar 1.1 draft]]&lt;br /&gt;
|-&lt;br /&gt;
| vcalendar-child || link from an event to a contained event || [[User:TobyInk/hcalendar-1.1|hCalendar 1.1 draft]]&lt;br /&gt;
|-&lt;br /&gt;
| vcalendar-sibling || link from an event to a related event with the same container || [[User:TobyInk/hcalendar-1.1|hCalendar 1.1 draft]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-status|status]] || the referenced document represents the status (or source of status updates) for the author of this document || [http://monkinetic.com/2009/11/24/status-autodiscovery-relstatus.html blog post]&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== more brainstorming ===&lt;br /&gt;
See also:&lt;br /&gt;
* [[genealogy-brainstorming]] for some thoughts on possible additional values for family relationships (use existing [[XFN]] [[rel-parent|parent]], [[rel-child|child]], [[rel-sibling|sibling]], [[rel-spouse|spouse]], [[rel-kin|kin]] values first though)&lt;br /&gt;
* [[xpn-brainstorming]] for some thoughts on possible additional values for professional relationships (use existing [[XFN]] [[rel-co-worker|co-worker]], [[rel-colleague|colleague]] values first though)&lt;br /&gt;
&lt;br /&gt;
== POSH usage ==&lt;br /&gt;
There are numerous rel values used as [[POSH]], both in the wild, whose origins are not necessarily known, nor are their meanings consistent.  There are also numerous rel values from external proposals of varying degrees of merit.  It is useful to document their existence and summarize their implied meanings/usage intent as research that may be used to perhaps take one or more of them thru the microformats [[process]] if there is both sufficient interest and sufficient in the wild usage.&lt;br /&gt;
&lt;br /&gt;
Note: If a value is missing from this table, it may have either already been promoted by writing it up as a proposal, or demoted by being explicitly dropped. Please check the other tables first before adding to this table.&lt;br /&gt;
&lt;br /&gt;
Note: this list is incomplete, please help complete it from the following sources:&lt;br /&gt;
&lt;br /&gt;
External sources: &lt;br /&gt;
* [http://developer.mozilla.org/about/meta Meta Information in DevMo Docs] (DevMo)&lt;br /&gt;
* [http://wiki.mozilla.org/Microsummaries Microsummary]&lt;br /&gt;
* [http://lachy.id.au/dev/markup/specs/wclr/ Web Communication Link Relationships] (WCLR)&lt;br /&gt;
* [http://www.w3.org/MarkUp/Relationships.html W3C Link Relationship values draft] (LRdraft) - from a draft of the HTML spec circa 1991. &lt;br /&gt;
* [http://www.whatwg.org/specs/web-apps/current-work/multipage/section-links.html#linkTypes HTML5 draft] '''Liable to change'''&lt;br /&gt;
* [http://wiki.foaf-project.org/Autodiscovery FOAF Project Wiki: Autodiscovery] (FOAF)&lt;br /&gt;
* [http://www.apps.ietf.org/rfc/rfc4685.html RFC4685]&lt;br /&gt;
* [http://googlewebmastercentral.blogspot.com/2009/02/specify-your-canonical.html Google Blog]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! summary !! origin !! proposal(s)&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-archive|archive]] || index of archived entries || unknown, perhaps Wordpress open source blogging software || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-archives|archives]] || Provides a link to a collection of records, documents, or other materials of historical interest. ||  || HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|[[rel-author|author]]||see brainstorming above for suggested use by google||unknown || DevMo / HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-canonical|canonical]] || To help search engines disambiguate the same page with multiple representations || Google || [http://googlewebmastercentral.blogspot.com/2009/02/specify-your-canonical.html Google]/[http://www.bing.com/community/blogs/webmaster/archive/2009/02/12/partnering-to-help-solve-duplicate-content-issues.aspx Microsoft]/[http://www.ysearchblog.com/2009/02/12/fighting-duplication-adding-more-arrows-to-your-quiver/ Yahoo!], [http://blog.ask.com/2009/02/ask-is-going-canonical.html Ask Jeeves]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-comment|comment]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-contribution|contribution]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-edituri|EditURI]] &lt;br /&gt;
| Location of the xml-rpc gateway for a Wordpress install that allows external programs to add, edit and delete posts. Used by &amp;quot;[http://codex.wordpress.org/Weblog_Client WordPress blog client]&amp;quot; software for automating posting and updating blog content from your desktop. || Seen in [http://www.wordpress.org/ WordPress], e.g. [http://www.tom-watson.co.uk/].  || Description stubbed in [[rel-edituri]].&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-endorsed|endorsed]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-fan|fan]] || xxxx. || &amp;amp;hellip; || [[hcard-user-profile-authoring]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-feed|feed]] || Gives the address of a syndication feed for the current document. || &amp;amp;hellip; || WCLR/ HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-footnote|footnote]] || Location of the footnote on a link to a footnote. || Markdown preprocessors such as [http://maruku.rubyforge.org/ Maruku] || HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-icon|icon]] || Imports an icon to represent the current document. (Allowed in &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt; only) || [http://dev.w3.org/html5/spec-LC/links.html#rel-icon HTML5] || WCLR/HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-kinetic-stylesheet|kinetic-stylesheet]] || Imports a [http://kssproject.org/ KSS] 'kinetic stylesheet' to bind dynamic behavior to elements || Used in the [http://plone.org Plone] Content Management System || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-lightbox|lightbox]] || Hook - Indicates that following the link will trigger a &amp;quot;lightbox&amp;quot; script (Allowed in &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt; only) || ([http://www.google.co.uk/search?q=rel%3D%22lightbox%22 Google search for rel=lightbox in the wild]) || &amp;amp;hellip; &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-lightbox|lightbox[group_name]]] || Used by lightbox scripts to group different sets of images together.  Images from one group will not appear in another group's lightbox.  See also &amp;quot;lightbox&amp;quot;. || [http://lokeshdhakar.com/projects/lightbox2/#how Lightbox 2] || &amp;amp;hellip; &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-prettyPhoto|prettyPhoto]] || See also &amp;quot;lightbox&amp;quot; || ([http://www.google.fr/search?q=rel%3D%22prettyphoto%22 Google search for rel=&amp;quot;prettyphoto&amp;quot; in the wild]) || &amp;amp;hellip; &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-clearbox|clearbox]] || See also &amp;quot;lightbox&amp;quot; || ([http://www.google.fr/search?q=rel%3D%22clearbox%22 Google search for rel=&amp;quot;clearbox&amp;quot; in the wild]) || &amp;amp;hellip; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-made|made]] || &amp;amp;hellip; || &amp;amp;hellip; || LRdraft&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-meta|meta]] || &amp;amp;hellip; ||  [http://www.w3.org/TR/1999/REC-rdf-syntax-19990222/#transport 1999 W3C RDF syntax REC] || FOAF&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-microsummary|microsummary]]|| &amp;amp;hellip; || &amp;amp;hellip; ||[http://wiki.mozilla.org/Microsummaries Microsummary], be aware of: [[page-summary-formats#Issues_2|microsummary issues]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-noreferrer|noreferrer]] || indicates that no referrer information is to be leaked when following the link. || [http://dev.w3.org/html5/spec-LC/links.html#rel-noreferrer HTML5] || HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-openid-delegate|openid.delegate]] || &amp;amp;hellip; || ([http://www.google.co.uk/search?q=%22rel%3Dopenid%22 Google search for rel=openid.* in the wild]) || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-openid-server|openid.server]] || &amp;amp;hellip; || ([http://www.google.co.uk/search?q=%22rel%3Dopenid%22 Google search for rel=openid.* in the wild]) || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-permalink|permalink]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-pgpkey|pgpkey]] || (see also rel-publickey) || &amp;amp;hellip; || [http://golem.ph.utexas.edu/~distler/blog/archives/000320.html], [http://golem.ph.utexas.edu/~distler/blog/archives/000325.html]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-pingback|pingback]] || Gives the address of the pingback server that handles pingbacks to the current document. (Allowed in &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt; only) || &amp;amp;hellip; || WCLR/ HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-popover|popover]] || Used by a JS widget to display a large, descriptive tooltip. || [http://twitter.github.com/bootstrap Twitter's Bootstrap] [http://twitter.github.com/bootstrap/javascript.html#popovers Popover.js] || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-prefetch|prefetch]] || Specifies that the target resource should be pre-emptively cached. (Allowed in &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt; only) || &amp;amp;hellip; || HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-privacy|privacy]] || Specifies that the target resource is the privacy policy. || &amp;amp;hellip; || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-publickey|publickey]] || (see also rel-pgpkey) || &amp;amp;hellip; || [http://rasterweb.net/raster/2002/12/12/20021212072812/]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-referral|referral]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-related|related]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-replies|replies]] || indicates a continued thread || unknown || [http://www.apps.ietf.org/rfc/rfc4685.html RFC4685]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-resource|resource]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-search|search]] || &amp;amp;hellip; || unknown || unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sitemap|sitemap]] || Links to a site map document. || &amp;amp;hellip; || http://www.sitemaps.org/&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sponsor|sponsor]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-tooltip|tooltip]] || Used by a JS widget to display a tooltip similar (though more customizable) to what is shown by browsers if the 'title' attribute is present. || [http://twitter.github.com/bootstrap Twitter's Bootstrap] [http://twitter.github.com/bootstrap/javascript.html#tooltips Tooltip.js] (and likely other JS tools) || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-trackback|trackback]] || &amp;amp;hellip; || unknown, perhaps open source Movable Type blogging software || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-unendorsed|unendorsed]] || (probably redundant to [[rel-nofollow|nofollow]]) || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-user|user]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-wlwmanifest|wlwmanifest]] || Used by &amp;quot;[http://explore.live.com/windows-live-writer Windows Live Writer],&amp;quot; a Microsoft [http://codex.wordpress.org/Weblog_Client blog client] for automating posting and updating blog content from your desktop. || Seen in [http://www.wordpress.org/ WordPress], e.g. [http://www.tom-watson.co.uk/]. Similar values are probably used by other blog content management systems as well. || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== WCLR ===&lt;br /&gt;
&lt;br /&gt;
The WCLR proposal is described by its author (in e-mail, 2007-09-25) as:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&amp;amp;hellip;now effectively obsolete, since HTML5 and Microformats cover all the worthwhile relationships in that already.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
These are [http://www.whatwg.org/specs/web-apps/current-work/multipage/section-links.html#linkTypes covered by HTML5 already]:&lt;br /&gt;
&lt;br /&gt;
* permalink -&amp;gt; bookmark&lt;br /&gt;
* archive -&amp;gt; archives&lt;br /&gt;
* feed&lt;br /&gt;
* pingback&lt;br /&gt;
* unendorsed -&amp;gt; nofollow&lt;br /&gt;
&lt;br /&gt;
The rest now seem unnecessary.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Nonetheless, there may be some mileage in using them in microformats, at least until HTML5 is widely available.&lt;br /&gt;
&lt;br /&gt;
== Dublin Core ==&lt;br /&gt;
In the past, Dublin Core values have been added to this page in the table about HTML5 features, but no examples, nor an actual specification explicitly stating how the value(s) should be used in HTML could be found. The linked specifications below have been updated so we should start considering Dublin Core values accordingly.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! summary !! source&lt;br /&gt;
|-&lt;br /&gt;
| schema.DC || a specification of all metadata terms maintained by the Dublin Core Metadata Initiative, with regard to the fifteen terms of the Dublin Core Metadata Element Set already published || [http://www.dublincore.org/documents/dcq-html/ Dublin Core]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| schema.DCTERMS || a specification of all metadata terms maintained by the Dublin Core Metadata Initiative, reflecting the changes described more fully in the 2012 document &amp;quot;Maintenance changes to DCMI Metadata Terms&amp;quot; [http://dublincore.org/usage/decisions/2012/dcterms-changes/] || [http://www.dublincore.org/documents/dcq-html/ Dublin Core]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
'''Issues need updating given new information from linked resources.'''&lt;br /&gt;
&lt;br /&gt;
Notes:&lt;br /&gt;
* Dublin Core. This search may help: [http://www.google.co.uk/search?as_q=rel%3Dschema.*&amp;amp;hl=en&amp;amp;num=10&amp;amp;btnG=Google+Search&amp;amp;as_epq=&amp;amp;as_oq=&amp;amp;as_eq=&amp;amp;lr=&amp;amp;as_ft=i&amp;amp;as_filetype=&amp;amp;as_qdr=all&amp;amp;as_occt=any&amp;amp;as_dt=i&amp;amp;as_sitesearch=http%3A%2F%2Fdublincore.org&amp;amp;as_rights=&amp;amp;safe=images]. &lt;br /&gt;
** '''examples from that search only use invisible &amp;lt;code&amp;gt;&amp;amp;lt;link href&amp;amp;gt;&amp;lt;/code&amp;gt; element'''. At first glance it appears the results from the search show only uses with the invisible &amp;lt;code&amp;gt;&amp;amp;lt;link href&amp;amp;gt;&amp;lt;/code&amp;gt; element which is not ideal for content relationships.  Content relationships should be user visible and thus uses with &amp;lt;code&amp;gt;&amp;amp;lt;a href&amp;amp;gt;&amp;lt;/code&amp;gt; are strongly preferred.  &lt;br /&gt;
*** [http://www.ietf.org/rfc/rfc2731.txt RFC2731] defines &amp;lt;code&amp;gt;rel=&amp;quot;schema.AC&amp;quot;&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;rel=&amp;quot;schema.RC&amp;quot;&amp;lt;/code&amp;gt; with the pattern &amp;lt;code&amp;gt;rel=&amp;quot;schema.PREFIX&amp;quot;&amp;lt;/code&amp;gt; as a syntax for defining namespaces for use in meta[@name], *[@rel], *[@rev] and (as per eRDF) *[@class] attributes. A link to a Dublin Core metadata schema is generally not suitable for end users, so &amp;lt;code&amp;gt;&amp;amp;lt;link href&amp;amp;gt;&amp;lt;/code&amp;gt; appears to be more appropriate than &amp;lt;code&amp;gt;&amp;amp;lt;a href&amp;amp;gt;&amp;lt;/code&amp;gt; for those that use Dublin Core metadata schemas.&lt;br /&gt;
*** The scheme proposed above provides metadata namespace declarations. As described by DCMI specifications, such indications '''cannot''' be provided w/o a suitable namespace. In order to give complete pieces of information, the correct description set must be: &amp;lt;code&amp;gt;&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot;&amp;amp;gt;&amp;lt;/code&amp;gt; (for the namespace declaration, followed by) &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.&amp;lt;nowiki&amp;gt;[element]&amp;lt;/nowiki&amp;gt;&amp;quot; content=&amp;quot;&amp;lt;nowiki&amp;gt;[element.value]&amp;lt;/nowiki&amp;gt;&amp;quot;&amp;amp;gt;&amp;lt;/code&amp;gt; for related elements. &lt;br /&gt;
**** Note: [http://purl.org/dc/terms/ schema.DCTERMS] is conventionally related to an upgraded elements list than [http://purl.org/dc/elements/1.1/ schema.DC] and should be preferred as rel values. Both are discussed here for subject completeness) &lt;br /&gt;
** '''proposal to use in content currently only theoretical'''. Thus unfortunately the use of Dublin Core in user visible content like &amp;lt;code&amp;gt;&amp;amp;lt;a href&amp;amp;gt;&amp;lt;/code&amp;gt; appears to be strictly theoretical. See [http://microformats.org/discuss/mail/microformats-discuss/2008-January/011445.html microformats-discuss/2008-January/011445.html] for a proposal to use Dublin Core in user visible content.&lt;br /&gt;
*** '''recent improvements'''. DCMI solves some trouble concerning metadata through the ''description set model''. Some of these informations cannot currently be provided in any standard ways other than DC, namely dates, validity and periodicity. Following this public bug report ([https://www.w3.org/Bugs/Public/show_bug.cgi?format=multiple&amp;amp;id=22520]), the correct namespace declaration for DC and DCTERMS metadata are now considered valid HTML code. We '''must''' encourage this practice both for internal usefulness and for shared practices. &lt;br /&gt;
&lt;br /&gt;
* The Dublin Core document [http://dublincore.org/documents/dc-html/ &amp;quot;Expressing Dublin Core metadata using HTML/XHTML meta and link elements&amp;quot;] is a specification for, and gives examples of, both &amp;lt;link rel=&amp;quot;schema.DC&amp;quot; href=&amp;quot;http://purl.org/dc/elements/1.1/&amp;quot;&amp;gt; and &amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot;&amp;gt;. Note that Dublin Core encourages the use of DCTERMS elements over DC. A list of projects which use Dublin Core metadata is maintained [http://dublincore.org/projects/ here].&lt;br /&gt;
* [http://dublincore.org/documents/dc-html/ &amp;quot;Expressing Dublin Core metadata using HTML/XHTML meta and link elements&amp;quot;] also includes examples of &amp;lt;link rel=&amp;quot;DCTERMS.[element]&amp;quot; href=&amp;quot;&amp;quot;&amp;gt;, where [element] = subject, isReferencedBy, creator, and publisher. The &amp;lt;link&amp;gt; tag is used instead of the &amp;lt;meta&amp;gt; tag whenever the content is a URL. (Note that this use is different from, but related to, &amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;quot;&amp;gt;.) Potentially, ''any'' of the 55 DCTERMS elements could be used in this way, and this could include use in HTML 5.&lt;br /&gt;
** As said before, HTML5 validators now allow the use of &amp;lt;code&amp;gt;&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot;&amp;amp;gt;&amp;lt;/code&amp;gt; for namespace declarations.&lt;br /&gt;
&lt;br /&gt;
* According to DCMI specification linked above, as well as [http://dublincore.org/documents/dc-html/ &amp;quot;Expressing Dublin Core metadata using HTML/XHTML meta and link elements&amp;quot;] documentation, HTML5 @rel attribute proposed values table has been updated. It now includes a subset of DCMI ''/terms/'' namespace properties, more specifically those whose value can (or must) be logically expressed by a resource, so that the &amp;quot;href&amp;quot; attribute value becomes a non-literal value surrogate referring to the resource itself.&lt;br /&gt;
** Elements from ''/elements/1.1/'' namespace have not been included on purpose. According to [http://wiki.dublincore.org/index.php/FAQ/DC_and_DCTERMS_Namespaces &amp;quot;FAQ/DC and DCTERMS Namespaces&amp;quot;], the old namespace is maintained for legacy purposes only and it is not as suitable for non-literal values as the ones denoted by &amp;lt;code&amp;gt;&amp;amp;lt;link&amp;gt;&amp;lt;/code&amp;gt; elements.&lt;br /&gt;
&lt;br /&gt;
== Use with HTTP Link Header ==&lt;br /&gt;
You can also use any of the rel values (that are allowed for link elements) with HTTP Link Headers, &lt;br /&gt;
&lt;br /&gt;
Example: returning a Javascript file with a license (since JS itself has no way to indicate a license)&lt;br /&gt;
&amp;lt;source lang=text&amp;gt;&lt;br /&gt;
Link: &amp;lt;http://creativecommons.org/publicdomain/zero/1.0/&amp;gt;; rel=&amp;quot;license&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For multiple licenses (e.g. CC-SA and GPL), simply use multiple &amp;lt;code&amp;gt;Link:&amp;lt;/code&amp;gt; headers.&lt;br /&gt;
&amp;lt;source lang=text&amp;gt;&lt;br /&gt;
Link: &amp;lt;http://creativecommons.org/licenses/by-sa/3.0/&amp;gt;; rel=&amp;quot;license&amp;quot;&lt;br /&gt;
Link: &amp;lt;http://www.gnu.org/licenses/gpl.html&amp;gt;; rel=&amp;quot;license&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Example: similarly, linking to a copyright statement for an image:&lt;br /&gt;
&amp;lt;source lang=text&amp;gt;&lt;br /&gt;
Link: &amp;lt;http://example.org/copyright.html&amp;gt;; rel=&amp;quot;copyright&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
or providing a brief inline copyright statement:&lt;br /&gt;
&amp;lt;source lang=text&amp;gt;&lt;br /&gt;
Link: &amp;lt;data:text/plain;charset=utf-8,Copyright 2013 ExampleCo, All Rights Reserved.&amp;gt;; rel=&amp;quot;copyright&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== unspecified ==&lt;br /&gt;
Some rel values have been added to this page perhaps in one of the tables above, but no examples, nor an actual specification explicitly stating that the value(s) should be used in the HTML 'rel' attribute could be found. They are listed here in the hopes someone can discover more specific/precise URLs to examples or specifications about them (preferably both).  Until such precise URLs to examples/specs are provided, the values can be treated as they are purely theoretical and thus of little interest.&lt;br /&gt;
&lt;br /&gt;
A simple list here is sufficient.&lt;br /&gt;
&lt;br /&gt;
== non HTML rel values ==&lt;br /&gt;
There are markup languages other than HTML that also have a rel attribute, often based upon the HTML rel attribute.&lt;br /&gt;
It is useful to document some of these other languages and their rel values for both reference purposes, and to provide  background research for the possible development and re-use of these values in HTML, as [[poshformats]] or [[microformats]]&lt;br /&gt;
&lt;br /&gt;
Sources:&lt;br /&gt;
* [[Atom]] [[RFC4287]] specification. &lt;br /&gt;
* See http://www.iana.org/assignments/link-relations.html for more.&lt;br /&gt;
* See [http://amundsen.com/media-types/maze/format/#link-relations Maze+XML]&lt;br /&gt;
* See [http://amundsen.com/media-types/collection/format/#link-relations Collection+JSON]&lt;br /&gt;
* See [http://www.opensearch.org/Specifications/OpenSearch/1.1#Url_rel_values OpenSearch]&lt;br /&gt;
* See [http://tools.ietf.org/html/rfc6861 The Create-Form and Edit-Form Link Relations (RFC6861)]&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! summary&amp;lt;br /&amp;gt;(from the relevant specification where possible)) !! defining specification&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| self&lt;br /&gt;
| From http://www.ietf.org/rfc/rfc4287.txt : &amp;lt;blockquote&amp;gt;The value &amp;quot;self&amp;quot; signifies that the IRI in the value of the href attribute identifies a resource equivalent to the containing element.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
| [[Atom]] http://www.ietf.org/rfc/rfc4287.txt&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| http://gdata.youtube.com/schemas/2007#in-reply-to || See http://code.google.com/apis/youtube/2.0/developers_guide_protocol_comments.html || YouTube extension to Atom&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| collection || Refers to a resource which represents a collection of which the current resource is a member.&lt;br /&gt;
&lt;br /&gt;
When used in the Maze+XML media type, the associated URI returns the available collection of mazes.&lt;br /&gt;
  || Maze+XML, Collection+JSON, OpenSearch&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| east || Refers to a resource to the &amp;quot;east&amp;quot; of the current resource.&lt;br /&gt;
&lt;br /&gt;
When used in the Maze+XML media type, the associated URI points to a neighboring cell resource to the east in the active maze.&lt;br /&gt;
&lt;br /&gt;
 || Maze+XML&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| exit || Refers to a resource that represents the exit or end of the current client actvity or process.&lt;br /&gt;
&lt;br /&gt;
When used in the Maze+XML media type, the associated URI points to the final exit resource of the active maze.&lt;br /&gt;
&lt;br /&gt;
 || Maze+XML&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| north || Refers to a resource that is &amp;quot;north&amp;quot; of the current resource.&lt;br /&gt;
&lt;br /&gt;
When used in the Maze+XML media type, the associated URI points to a neighboring cell resource to the north in the active maze.&lt;br /&gt;
&lt;br /&gt;
 || Maze+XML&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| south || Refers to a resource that is &amp;quot;south&amp;quot; of the current resource.&lt;br /&gt;
&lt;br /&gt;
When used in the Maze+XML media type, the associated URI points to a neighboring cell resource to the south in the active maze.&lt;br /&gt;
&lt;br /&gt;
 || Maze+XML&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-via|via]] || Identifies a resource that is the source of the information in the context. ||  Atom 1.0 Syndication format (RFC 4287)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| west || Refers to a resource that is &amp;quot;west&amp;quot; of the current resource.&lt;br /&gt;
&lt;br /&gt;
When used in the Maze+XML media type, the associated URI points to a neighboring cell resource to the west in the active maze.&lt;br /&gt;
&lt;br /&gt;
 || Maze+XML&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| item || The target IRI points to a resource that is a member of a collection represented by the context IRI. || Collection+JSON&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| create-form || When included in a resource, the &amp;quot;create-form&amp;quot; link relation MAY identify a target resource that represents the form to append a new member to the link context. || See [http://tools.ietf.org/html/rfc6861 The Create-Form and Edit-Form Link Relations (RFC6861)]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| edit-form || When included in a resource, the &amp;quot;edit-form&amp;quot; link relation identifies a target resource that represents the form for editing associated resource. || See [http://tools.ietf.org/html/rfc6861 The Create-Form and Edit-Form Link Relations (RFC6861)]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| lightframe || Opens the target in a lightbox. On inclusion it provides a simple target the lightframe and loads the content in a lightbox effect || Lightbox&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| superbox[image] || jQuery Superbox! is a script which allows you display windows with the lightbox effect. || superbox&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| wp-video-lightbox || wp-video-lightbox! is a rel to anchor tag script display videos with the lightbox effect. || wp-video-lightbox&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| youtube || Opens the target youtube video in using the Swipebox Plugin || Swipebox&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| shadowbox || shadowbox is a jQuery script for images displaying with the &amp;quot;lightbox&amp;quot; effects. || shadowbox&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| permission || When included in a resource, the &amp;quot;permission&amp;quot; link relation MAY identify a target resource that represents the list of entities that can access or modify the resource in the link context. || See [http://cdoc.io/spec.html#permission-link-relation Collection Document Media Type Specification]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| version-history&lt;br /&gt;
| When included on a versioned resource, this link points to a resource containing the version history for this resource.&lt;br /&gt;
| [http://tools.ietf.org/html/rfc5829 RFC 5829]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| latest-version&lt;br /&gt;
| When included on a versioned resource, this link points to a resource containing the latest (e.g., current) version.&lt;br /&gt;
| [http://tools.ietf.org/html/rfc5829 RFC 5829]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| working-copy&lt;br /&gt;
| When included on a versioned resource, this link points to a working copy for this resource.&lt;br /&gt;
| [http://tools.ietf.org/html/rfc5829 RFC 5829]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| working-copy-of&lt;br /&gt;
| When included on a working copy, this link points to the versioned resource from which this working copy was obtained.&lt;br /&gt;
| [http://tools.ietf.org/html/rfc5829 RFC 5829]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| predecessor-version&lt;br /&gt;
| When included on a versioned resource, this link points to a resource containing the predecessor version in the version history.&lt;br /&gt;
| [http://tools.ietf.org/html/rfc5829 RFC 5829]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| successor-version&lt;br /&gt;
| When included on a versioned resource, this link points to a resource containing the successor version in the version history.&lt;br /&gt;
| [http://tools.ietf.org/html/rfc5829 RFC 5829]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| ... || ... || ...&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== dropped ==&lt;br /&gt;
The following rel values were in earlier version(s) of specification(s) and it is presumed by their absence from the most recent version of the respective specification(s) that they have been deprecated or obsoleted. &lt;br /&gt;
&lt;br /&gt;
In general, you {{should not}} use any dropped values.&lt;br /&gt;
&lt;br /&gt;
If any such values have been superceded by standard values (see the first table on this page), then you {{must not}} use the dropped versions.&lt;br /&gt;
&lt;br /&gt;
In particular:&lt;br /&gt;
* if a rel value was in a draft and is missing (without explanation) from the final spec, or&lt;br /&gt;
* if a rel value was in a previous version of and is missing (without explanation) from an update to the specification (even a draft update)&lt;br /&gt;
&lt;br /&gt;
Then absent any other information or explanation, it is presumed that the group/editors working on that specification decided to explicitly drop it (either in development, or in the updated version) and thus it should be obsoleted (not re-registered). &lt;br /&gt;
&lt;br /&gt;
If you wish to add them, please research &amp;lt;em&amp;gt;why&amp;lt;/em&amp;gt; such values were omitted from latter specifications before doing so. If you do discover the reasoning, please add a short statement or link to thereof into the appropriate place in the following table.&lt;br /&gt;
&lt;br /&gt;
If there is more data, e.g. a link to an email of discussion of the spec development that explains ''why'' the rel value was dropped, and it explicitly states, e.g. it was without prejudice, or merely post-poned, or perhaps expected to be spun-out into its spec (or some other explicit positive reason), then it makes to link/cite that explicit text as part of a proposal.&lt;br /&gt;
&lt;br /&gt;
Sources: &lt;br /&gt;
* [http://www.w3.org/MarkUp/html3/ HTML3] (HTML3) / has been superceded by [http://www.w3.org/MarkUp/Wilbur/ HTML 3.2] - which itself has been superceded by [http://www.w3.org/TR/REC-html40 HTML 4.0] - which itself has been updated by [http://w3.org/TR/html401 HTML 4.01], commonly referred to as &amp;quot;HTML 4&amp;quot; in this wiki and other places.)&lt;br /&gt;
* [http://www.w3.org/TR/relations.html Proposed HTML 4.0 link types] (HTML4dropped) - obsoleted/superceded by the HTML 4.0 Recommendation.  Any values that were in the &amp;quot;Proposed HTML 4.0 link types&amp;quot; document but didn't make it into the HTML 4.0 Recommendation were thus explicitly dropped and should be avoided.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! summary !! defining specification !! why dropped &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|[[rel-banner|banner]]||Was used to reference another document to be used as banner for this document (i.e. a form of &amp;quot;include&amp;quot; statement).|| HTML3 ||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-begin|begin]] || identifies the author-defined start of a sequence of documents of which the current document is a node.&lt;br /&gt;
 || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-biblioentry|biblioentry]] || identifies a bibliographic entry || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-bibliography|bibliography]] || identifies a bibliography || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-child|child]] (obsolete/superceded) || the target document is a hierarchical child, or subdocument, of the current document|| HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-citation|citation]] || the target is a bibliographic citation || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-collection|collection]] || the target document is an collection that contains the current document || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-definition|definition]] || identifies a definition of a term || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-disclaimer|disclaimer]] || identifies a hypertext link to a legal disclaimer || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-editor|editor]] || identifies a hypertext link to an editor || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-end|end]] || identifies the author-defined end of a sequence of documents of which the current document is a node. || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-footnote|footnote]] || the anchor is a footnote marker and the target is a footnote || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-navigate|navigate]] || the target document contains information such as a image map that will help users to gain a sense of how and where to found information || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-origin|origin]] || synonym for &amp;lt;code&amp;gt;top&amp;lt;/code&amp;gt; || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-parent|parent]] (obsolete/superceded) || the target document is the hierarchical parent, or container, of the current document|| HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-pointer|pointer]] || the target is a pointer to the real target. This value can be used by a user agent to perform a pre-fetch of the specified target for evaluation until the real target is reached || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-publisher|publisher]] || identifies a hypertext link to a publisher || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sibling|sibling]] (obsolete/superceded) || the target document is a child of a common parent, or a hierarchical peer of the current document|| HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-top|top]] || the target document is the logical top node of the tree (see also &amp;lt;code&amp;gt;begin&amp;lt;/code&amp;gt;) || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-trademark|trademark]] || identifies a hypertext link to a trademark notice || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-translation|translation]] || the target is a translation to another language || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-urc|urc]] || identifies a Universal Resource Citation || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== dropped without prejudice ==&lt;br /&gt;
In one known instance (from HTML4 to HTML5), some rel values were in an earlier version of a specification (or a proposal) and were dropped from a latter (draft) version, and it was noted that these values were dropped with the intent that they could still be proposed in a registry and thus they explicitly were not deprecated or obsoleted. This section documents such values as separate from the [[#dropped|dropped]] section.&lt;br /&gt;
&lt;br /&gt;
In general, you {{should not}} use any dropped values.&lt;br /&gt;
&lt;br /&gt;
If any such values have been superceded by standard values (see the first table on this page), then you {{must not}} use the dropped versions.&lt;br /&gt;
&lt;br /&gt;
Rel values that were dropped without prejudice from a specification will be considered similar to new values that have never been specified.&lt;br /&gt;
&lt;br /&gt;
If you know of additional rel values that were dropped without prejudice from an update to a specification, please cite a URL and quote from the group developing the specification that officially states from that group that the dropping of the values was done without prejudice, or equivalent statement (such as explicit allowance of external registration, proposal, and/or development).&lt;br /&gt;
&lt;br /&gt;
This table serves a historical purpose. If you wish to propose a value from this table, please copy it and leave it in place.&lt;br /&gt;
&lt;br /&gt;
Sources: &lt;br /&gt;
* Several rel values were [http://www.w3.org/Bugs/Public/show_bug.cgi?id=7475#c15 explicitly dropped from HTML5]. Per: [http://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html Issue 118 Decision] ('''emphasis''' added): &amp;lt;blockquote&amp;gt;&amp;lt;p&amp;gt;&amp;quot;The final proposal argues for the removal of some relation values, to wit, it suggests removal of '''index, up, first and last'''. It was pointed out in survey comments that these relations are already registered in the IANA link relation registry. Presumably, '''these relations could also be entered in whatever other registry or registries HTML5 adopts for this purpose'''.&amp;lt;/p&amp;gt;...&amp;lt;p&amp;gt;&amp;quot;Next Steps&amp;lt;/p&amp;gt;...&amp;lt;p&amp;gt;&amp;quot;Since the relations to be removed are already registered at the IANA link relation registry, no further action is needed to include them there. WG members are '''free to register or record these relations elsehwere''' [sic], as well.&amp;quot;&amp;lt;/p&amp;gt;&amp;lt;/blockquote&amp;gt; &lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value&lt;br /&gt;
! summary&lt;br /&gt;
! defining specification&lt;br /&gt;
! why dropped &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-first|first]]&lt;br /&gt;
| synonym for &amp;lt;code&amp;gt;begin&amp;lt;/code&amp;gt;&lt;br /&gt;
| HTML4dropped - never in an official spec&lt;br /&gt;
| [http://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html Explicitly dropped from HTML5 interim draft yet permitted for external registry]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-index|index]]&lt;br /&gt;
| Refers to a document providing an index for the current document.&lt;br /&gt;
| was in [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4]&lt;br /&gt;
| [http://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html Explicitly dropped from HTML5 interim draft yet permitted for external registry]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-last|last]]&lt;br /&gt;
| synonym for &amp;lt;code&amp;gt;end&amp;lt;/code&amp;gt;&lt;br /&gt;
| HTML4dropped - never in an official spec&lt;br /&gt;
| [http://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html Explicitly dropped from HTML5 interim draft yet permitted for external registry]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-up|up]]&lt;br /&gt;
|When the document forms part of a hierarchy, this link references the immediate parent of the current document.&lt;br /&gt;
| was in [http://www.w3.org/MarkUp/html3/dochead.html HTML3] - but [http://www.w3.org/TR/html401/types.html#type-links dropped in HTML4]&lt;br /&gt;
| [http://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html Explicitly dropped from HTML5 interim draft yet permitted for external registry]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
See related [http://dev.w3.org/html5/spec/links.html#linkTypes HTML5: Link types] for existing HTML5 specified rel values.&lt;br /&gt;
&lt;br /&gt;
== rejected ==&lt;br /&gt;
Some rel values have been proposed and rejected.  They are listed here to make that explicit.  Authors {{must not}} use rejected rel values.&lt;br /&gt;
&lt;br /&gt;
Source: [[rejected-formats]].&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! origin / proposal !! why rejected &lt;br /&gt;
|-&lt;br /&gt;
| [[rel-logo|logo]]&lt;br /&gt;
| [http://relogo.org Relogo.org]&lt;br /&gt;
| [[rejected-formats#Logo]]&lt;br /&gt;
|-&lt;br /&gt;
|[[rel-pavatar|pavatar]] || [http://pavatar.com/ pavatar] || [[rejected-formats#Pavatar]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== tools ==&lt;br /&gt;
See [[implementations]].&lt;br /&gt;
&lt;br /&gt;
== addtional external research ==&lt;br /&gt;
Here are some additional historical references to the development or rel-values which may be useful when researching values, especially why specific values may have been proposed but abandoned.&lt;br /&gt;
* 1996-06-07 [http://www.w3.org/MarkUp/draft-ietf-html-relrev-00.txt Hypertext links in HTML] (copies: [http://ftp.ics.uci.edu/pub/ietf/html/draft-ietf-html-relrev-00.txt ftp.ics.uci.edu])&lt;br /&gt;
* 1996-11-13 [http://www.w3.org/Architecture/NOTE-link Describing and Linking Web Resources] &lt;br /&gt;
* 1997-01-23 [http://lists.gnu.org/archive/html/lynx-dev/1997-01/msg00537.html LYNX-DEV Lynx and the LINK tag] &lt;br /&gt;
* 1997-01-24 [http://lists.w3.org/Archives/Public/w3c-sgml-wg/1997Jan/0357.html Taxonomy list] &lt;br /&gt;
* 1997-03-28 [http://www.w3.org/TR/WD-htmllink-970328 W3C Working Draft: Hypertext Links and Meta Information in HTML]&lt;br /&gt;
 &lt;br /&gt;
=== previous attempts at documenting ===&lt;br /&gt;
There have been previous attempts at documenting known rel values, most of which fell out of date due to being dependent on a single author maintaining them. They're listed here purely for historical reasons, and are not sufficient to be references of their own (since they're just individual curations of other references)&lt;br /&gt;
* [http://fantasai.tripod.com/qref/Appendix/LinkTypes/ltdef.html Link Type Definitions Glossary] by fantasai&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== related ==&lt;br /&gt;
{{rel-related-pages}}&lt;br /&gt;
* [[elemental-microformats]]&lt;br /&gt;
* [[existing-rev-values]]&lt;br /&gt;
* [[existing-class-names]]&lt;br /&gt;
&lt;br /&gt;
== copyright ==&lt;br /&gt;
&lt;br /&gt;
{{cc-pd-license}}&lt;/div&gt;</summary>
		<author><name>Andy sky</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=existing-rel-values&amp;diff=64851</id>
		<title>existing-rel-values</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=existing-rel-values&amp;diff=64851"/>
		<updated>2015-03-11T15:58:23Z</updated>

		<summary type="html">&lt;p&gt;Andy sky: /* HTML5 link type extensions */ Dublin Core nonliteral-type resource references&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt; existing rel values &amp;lt;/entry-title&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This page contains tables of known HTML rel values from specifications, formats, proposals, brainstorms, and non-trivial [[POSH]] usage in the wild.  In addition, dropped and rejected values are listed at the end for comprehensiveness.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;usage&amp;quot;&amp;gt;usage&amp;lt;/span&amp;gt;: see [[rel-faq#How_is_rel_used|how is 'rel' used]].  Regarding &amp;lt;span id=&amp;quot;rev&amp;quot;&amp;gt;rev&amp;lt;/span&amp;gt;, see: [[rel-faq#Should_rev_even_be_used|should 'rev' even be used]].&lt;br /&gt;
&lt;br /&gt;
This page is also the official rel registry ([http://www.whatwg.org/specs/web-apps/current-work/multipage/links.html#other-link-types][http://www.w3.org/TR/html5/links.html#other-link-types]). Add new and proposed rel values to the following section:&lt;br /&gt;
* [[existing-rel-values#HTML5_link_type_extensions|HTML5 link type extension]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== formats ==&lt;br /&gt;
These rel values are defined formats from specifications (HTML 4, microformats) are thus are &amp;lt;strong&amp;gt;recommended for general use&amp;lt;/strong&amp;gt;.  Alphabetically ordered by value.&lt;br /&gt;
&lt;br /&gt;
Note:&lt;br /&gt;
* &amp;lt;strong&amp;gt;Do not&amp;lt;/strong&amp;gt; add proposed rel values for HTML5 here, add them to the [[#HTML5_link_type_extensions|HTML5 link type extensions]] table.&lt;br /&gt;
* &amp;lt;strong&amp;gt;Do not&amp;lt;/strong&amp;gt; add rel values you find in the wild to this table of rel formats, instead add them to the table in the [[existing-rel-values#POSH_usage|POSH section]].&lt;br /&gt;
* &amp;lt;strong&amp;gt;Do not&amp;lt;/strong&amp;gt; add non-HTML rel values you find to this table of rel formats, instead add them to the table in the [[existing-rel-values#non_HTML_rel_values|non HTML rel values section]].&lt;br /&gt;
* &amp;lt;strong&amp;gt;Do not&amp;lt;/strong&amp;gt; add rel values from obsolete/superceded proposals or drafts, instead add them to the table in the &amp;quot;dropped&amp;quot; section.&lt;br /&gt;
&lt;br /&gt;
Sources:&lt;br /&gt;
* W3C Recommendations: &lt;br /&gt;
** [http://www.w3.org/TR/html401/types.html#h-6.12 HTML 4.01 section 6.12 Link types] (HTML4 Link types)&lt;br /&gt;
** [http://www.w3.org/TR/grddl/ Gleaning Resource Descriptions from Dialects of Languages] (GRDDL)&lt;br /&gt;
* [[microformats]] specifications&lt;br /&gt;
** [[xfn]]&lt;br /&gt;
** [[rel-license]]&lt;br /&gt;
** [[rel-nofollow]]&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! Keyword&lt;br /&gt;
! Effect on &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt;&lt;br /&gt;
! Effect on &amp;lt;code&amp;gt;a&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;area&amp;lt;/code&amp;gt;&lt;br /&gt;
! Brief description &amp;lt;br /&amp;gt;(from the relevant specification where possible)&lt;br /&gt;
! Link to defining specification&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-acquaintance|acquaintance]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the person represented by the current document considers the person represented by the referenced document to be an acquaintance&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-alternate|alternate]]&lt;br /&gt;
| external resource&lt;br /&gt;
| external relation&lt;br /&gt;
| Designates substitute versions for the document in which the link occurs. When used together with the &amp;lt;code&amp;gt;lang&amp;lt;/code&amp;gt; attribute, it implies a translated version of the document. When used together with the &amp;lt;code&amp;gt;media&amp;lt;/code&amp;gt; attribute, it implies a version designed for a different medium (or media). &lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-appendix|appendix]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document serving as an appendix in a collection of documents. &lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-bookmark|bookmark]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a bookmark. A bookmark is a link to a key entry point within an extended document. The &amp;lt;code&amp;gt;title&amp;lt;/code&amp;gt; attribute may be used, for example, to label the bookmark. Note that several bookmarks may be defined in each document. &lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-chapter|chapter]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document serving as a chapter in a collection of documents.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-child|child]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is a child of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-colleague|colleague]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is a colleague of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-contact|contact]] &lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the person represented by the current document considers the person represented by the referenced document to be a contact&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-contents|contents]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document serving as a table of contents. Some user agents also support the synonym ToC (from &amp;quot;Table of Contents&amp;quot;).&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-copyright|copyright]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a copyright statement for the current document.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-co-resident|co-resident]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person lives in the same residence as the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-co-worker|co-worker]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is a co-worker of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-crush|crush]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| this person considers the referenced person to be a crush (i.e. has a crush on the referenced person)&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-date|date]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| this person considers the referenced person to be a date (i.e. is dating the referenced person)&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-friend|friend]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the person represented by the current document considers the person represented by the referenced document to be a friend&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-glossary|glossary]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document providing a list of terms and their definitions that pertain to the current document.||[http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-help|help]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document offering help (more information, links to other sources information, etc.)&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-its-rules|its-rules]]&lt;br /&gt;
| allowed&lt;br /&gt;
| not allowed&lt;br /&gt;
| Refers to a document with external ITS rules.&lt;br /&gt;
| [http://www.w3.org/TR/its20/#selection-global-html5 Internationalization Tag Set (ITS) Version 2.0]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-kin|kin]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is part of the extended family of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-license|license]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| &amp;amp;hellip;indicates that the &amp;lt;nowiki&amp;gt;[referenced document]&amp;lt;/nowiki&amp;gt; is a license for the current page.&lt;br /&gt;
| [[rel-license]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-me|me]]&lt;br /&gt;
| external relation&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced document represents the same person as does the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-met|met]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| this person has met the referenced person&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-muse|muse]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person inspires the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-neighbor|neighbor]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person lives nearby the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-next|next]]&lt;br /&gt;
| external relation&lt;br /&gt;
| external relation&lt;br /&gt;
| Refers to the next document in a linear sequence of documents. User agents may choose to preload the &amp;quot;next&amp;quot; document, to reduce the perceived load time.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-nofollow|nofollow]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| indicates that the destination of that hyperlink {{should-not}} be afforded any additional weight or ranking by user agents which perform link analysis upon web pages (e.g. search engines).&lt;br /&gt;
| [[rel-nofollow]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-parent|parent]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is a parent of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-prev|prev]]&lt;br /&gt;
| external relation&lt;br /&gt;
| external relation&lt;br /&gt;
| Refers to the previous document in an ordered series of documents. Some user agents also support the synonym &amp;quot;Previous&amp;quot;.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-previous|previous]]&lt;br /&gt;
| external relation&lt;br /&gt;
| external relation&lt;br /&gt;
| Synonym of &amp;lt;code&amp;gt;prev&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-section|section]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document serving as a section in a collection of documents.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sibling|sibling]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is a sibling of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-spouse|spouse]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is a spouse of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-start|start]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to the first document in a collection of documents. This link type tells search engines which document is considered by the author to be the starting point of the collection.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-stylesheet|stylesheet]]&lt;br /&gt;
| external resource&lt;br /&gt;
| not allowed&lt;br /&gt;
| a style sheet for the current document&amp;lt;br /&amp;gt; used with the invisible &amp;lt;link href&amp;gt; element which is not ideal for content relationships. Content relationships should be user visible and thus uses with &amp;lt;a href&amp;gt; are strongly preferred. Unfortunately the use of stylesheet in user visible content like &amp;lt;a href&amp;gt; appears to be strictly theoretical.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-subsection|subsection]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document serving as a subsection in a collection of documents.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sweetheart|sweetheart]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| this person considers the referenced person to be their sweetheart&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-tag|tag]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| &amp;amp;hellip;indicates that the &amp;lt;nowiki&amp;gt;[referenced document]&amp;lt;/nowiki&amp;gt; is an author-designated &amp;quot;tag&amp;quot; (or keyword/subject) for the current page.&lt;br /&gt;
| [[rel-tag]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-toc|toc]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Synonym of &amp;lt;code&amp;gt;contents&amp;lt;/code&amp;gt; (from &amp;quot;Table Of Contents&amp;quot;)&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-transformation|transformation]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Relates a source document to a transformation, usually represented in XSLT, that relates the source document syntax to the RDF graph syntax. Used in [[grddl|GRDDL]]&lt;br /&gt;
| [http://www.w3.org/TR/grddl/#transformation GRDDL] &lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== notes ===&lt;br /&gt;
*&amp;lt;code&amp;gt;rel=&amp;quot;alternate&amp;quot;&amp;lt;/code&amp;gt; can take further meaning from additional attributes, such as &lt;br /&gt;
** &amp;lt;code&amp;gt;rel=&amp;quot;alternate&amp;quot; lang=&amp;quot;fr&amp;quot;&amp;lt;/code&amp;gt; (French language version of this page)&lt;br /&gt;
** &amp;lt;code&amp;gt;rel=&amp;quot;alternate&amp;quot; media=&amp;quot;print&amp;quot;&amp;lt;/code&amp;gt; (printable version of this page)&lt;br /&gt;
** &amp;lt;code&amp;gt;rel=&amp;quot;alternate&amp;quot; media=&amp;quot;handheld&amp;quot;&amp;lt;/code&amp;gt; (version of the page intended or better for handheld/portable devices like PDAs, cell phones, etc.)&lt;br /&gt;
&lt;br /&gt;
*Synonyms such as &amp;quot;previous&amp;quot;, &amp;quot;toc&amp;quot; are not as widely supported as the main term.&lt;br /&gt;
&lt;br /&gt;
== proposals ==&lt;br /&gt;
A few rel values have been developed as drafts as a result of going through most of the microformats [[process]], and are thus listed here for your serious consideration. You &amp;lt;strong&amp;gt;may use these values&amp;lt;/strong&amp;gt;, and if you find any problems with them please point them out on the respective &amp;quot;issues&amp;quot; page for the rel value.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! summary !! proposed in !! external spec (if any)&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-pronunciation|pronunciation]] || &amp;amp;hellip;indicates that the destination of the 'link' element is a document providing a pronunciation lexicon for speech-synthesis purposes. || [[rel-pronunciation]]&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-directory|directory]] || &amp;amp;hellip;indicates that the destination of the hyperlink is a directory listing containing an entry for the current page. || [[rel-directory]]&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-enclosure|enclosure]] || &amp;amp;hellip;indicates that the destination of that hyperlink is intended to be downloaded and cached. || [[rel-enclosure]] || [http://www.apps.ietf.org/rfc/rfc4287.html RFC4287]&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-home|home]] || &amp;amp;hellip;indicates that the &amp;lt;nowiki&amp;gt;[referenced document]&amp;lt;/nowiki&amp;gt; is the homepage of the site in which the current page appears. || [[rel-home]]&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-payment|payment]] || &amp;amp;hellip;indicates that the destination of the hyperlink provides a way to show or give support (e.g. financial) for the current page|| [[rel-payment]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== HTML5 link type extensions ==&lt;br /&gt;
&lt;br /&gt;
The following values are registered as link type extensions per the [http://www.whatwg.org/specs/web-apps/current-work/multipage/links.html#other-link-types requirements in the WHATWG HTML spec] and the [http://dev.w3.org/html5/spec/links.html#other-link-types requirements in the W3C HTML5 spec]. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Before you register a new value:&lt;br /&gt;
* '''Please check the [[#formats|Formats table]] and DO NOT re-register''' rel values that are already there. Please note that the W3C HTML WG has made a [http://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html Decision] to drop &amp;lt;code&amp;gt;index&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;up&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;first&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;last&amp;lt;/code&amp;gt; from the HTML5 spec itself.&lt;br /&gt;
* '''Please check the [[#dropped|Dropped table]] and DO NOT register''' values that are already there. If you believe a rel value was dropped from another specification without prejudice, please provide link/cite to explicit text/decision stating as such, e.g. the value was merely postponed, or perhaps expected to be spun-out into its own spec from the group developing that specification.&lt;br /&gt;
&lt;br /&gt;
Note that entries in the [[#formats|Formats table]] and entries that are already in HTML5 as built-in keywords are also considered extensions with the &amp;quot;Ratified&amp;quot; status.&lt;br /&gt;
&lt;br /&gt;
Please make sure that registrations added here have all the required data filled in ''including'':&lt;br /&gt;
* &amp;quot;Effect on link&amp;quot;&lt;br /&gt;
* &amp;quot;Effect on a and area&amp;quot; and &lt;br /&gt;
* a link to a spec that documents the keyword ''as an HTML &amp;lt;code&amp;gt;rel&amp;lt;/code&amp;gt; keyword''. (A spec that merely defines the file format of the link target but does not define the &amp;lt;code&amp;gt;rel&amp;lt;/code&amp;gt; keyword for use in HTML is not the kind of spec that is being required here.)&lt;br /&gt;
&lt;br /&gt;
Entries lacking any of the above required data will likely be removed. &lt;br /&gt;
&lt;br /&gt;
Changes to this registry will not be reflected in validators in real time. But validators will typically get automatically updated with the changes within one week or so&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! Keyword&lt;br /&gt;
! Effect on &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt;&lt;br /&gt;
! Effect on &amp;lt;code&amp;gt;a&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;area&amp;lt;/code&amp;gt;&lt;br /&gt;
! Brief description&lt;br /&gt;
! Link to specification&lt;br /&gt;
! Synonyms&lt;br /&gt;
! Status&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-apple-touch-icon|apple-touch-icon]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specify a Webpage Icon for a “Web Clip”, or “touch icon”, for mobile devices (not limited to Apple devices).&lt;br /&gt;
| [http://developer.apple.com/library/safari/#documentation/appleapplications/reference/safariwebcontent/configuringwebapplications/configuringwebapplications.html Apple's Safari Web Content Guide]&lt;br /&gt;
| probably redundant with rel=icon&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-apple-touch-icon-precomposed|apple-touch-icon-precomposed]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specify a Webpage Icon for a “Web Clip”, or “touch icon”, for mobile devices (not limited to Apple devices).&lt;br /&gt;
| [http://developer.apple.com/library/safari/#documentation/appleapplications/reference/safariwebcontent/configuringwebapplications/configuringwebapplications.html Apple's Safari Web Content Guide]&lt;br /&gt;
| probably redundant with rel=icon&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-apple-touch-startup-image|apple-touch-startup-image]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specify a splashscreen for Web apps on iOS Safari &lt;br /&gt;
| [http://developer.apple.com/library/safari/#documentation/appleapplications/reference/safariwebcontent/configuringwebapplications/configuringwebapplications.html Apple's Safari Web Content Guide]&lt;br /&gt;
| maybe redundant with rel=icon with the sizes attribute?&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-attachment|attachment]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| The resource linked to is &amp;quot;attached&amp;quot; to this document, similar to email attachments. Used in WordPress.&lt;br /&gt;
| No formal specification&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[WPVL_PRETTYPHOTO_REL]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Open lightbox with video&lt;br /&gt;
| No formal specification&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-authorization_endpoint|authorization_endpoint]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specify a hosted authorization server&lt;br /&gt;
| [http://indiewebcamp.com/distributed-indieauth  distributed IndieAuth documentation]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-canonical|canonical]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specifies the canonical URL for the current document in order to help avoid duplicate content.&lt;br /&gt;
| [http://en.wikipedia.org/wiki/Canonical_meta_tag Canonical meta tag] [http://www.Google.com/support/webmasters/bin/answer.py?answer=139066#2 Canonicalization at Google Webmaster Central] [http://www.Bing.com/community/site_blogs/b/webmaster/archive/2009/02/12/partnering-to-help-solve-duplicate-content-issues.aspx Microsoft Webmaster Center] [http://www.YSearchBlog.com/2009/02/12/fighting-duplication-adding-more-arrows-to-your-quiver/ Yahoo! Search Blog]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-category|category]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to a category assigned to the current document or post. Implemented by WordPress for indicating a relation between a blog post and a category.&lt;br /&gt;
| [[rel-category]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-component|component]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specify an HTML document that is treated as a component of this document.&lt;br /&gt;
| [https://dvcs.w3.org/hg/webcomponents/raw-file/tip/spec/components/index.html Web Components]&lt;br /&gt;
| &lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-chrome-webstore-item|chrome-webstore-item]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Link tag to declare for app and extensions inline installations hosted in the Chrome Web Store.&lt;br /&gt;
| [https://developers.google.com/chrome/web-store/docs/inline_installation Using Inline Installation]&lt;br /&gt;
| &lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#conformsTo|DCTERMS.conformsTo]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| An established standard to which the described resource conforms. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
| It may be replaced by the literal value in form of &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.conformsTo&amp;quot; content=&amp;quot;...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#contributor|DCTERMS.contributor]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| An entity responsible for making contributions to the resource. Examples include a person, an organization, or a service. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
| It may be replaced by the literal value in form of &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.contributor&amp;quot; content=&amp;quot;...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#creator|DCTERMS.creator]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| An entity primarily responsible for making the resource. Examples include a person, an organization, or a service. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
| It may be replaced by the literal value in form of &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.creator&amp;quot; content=&amp;quot;...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#description|DCTERMS.description]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| An account of the resource. Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource.  &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
| It may be replaced by the literal value in form of &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.description&amp;quot; content=&amp;quot;...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#hasFormat|DCTERMS.hasFormat]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that is substantially the same as the pre-existing described resource, but in another format.  &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#hasPart|DCTERMS.hasPart]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that is included either physically or logically in the described resource.  &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#hasVersion|DCTERMS.hasVersion]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that is a version, edition, or adaptation of the described resource.  &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#identifier|DCTERMS.identifier]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| An unambiguous reference to the resource within a given context.  &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
| It may be replaced by the literal value in form of &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.identifier&amp;quot; content=&amp;quot;...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#isFormatOf|DCTERMS.isFormatOf]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that is substantially the same as the described resource, but in another format.  &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#isPartOf|DCTERMS.isPartOf]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource in which the described resource is physically or logically included.  &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#isReferencedBy|DCTERMS.isReferencedBy]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that references, cites, or otherwise points to the described resource. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#isReplacedBy|DCTERMS.isReplacedBy]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that supplants, displaces, or supersedes the described resource. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#isRequiredBy|DCTERMS.isRequiredBy]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that requires the described resource to support its function, delivery, or coherence. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#isVersionOf|DCTERMS.isVersionOf]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource of which the described resource is a version, edition, or adaptation.	&amp;lt;br /&amp;gt;Changes in version imply substantive changes in content rather than differences in format. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#license|DCTERMS.license]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A legal document giving official permission to do something with the resource. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
| It may be replaced by the literal value in form of &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.license&amp;quot; content=&amp;quot;...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#mediator|DCTERMS.mediator]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| An entity that mediates access to the resource and for whom the resource is intended or useful. In an educational context, a mediator might be a parent, teacher, teaching assistant, or care-giver. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
| It may be replaced by the literal value in form of &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.mediator&amp;quot; content=&amp;quot;...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#publisher|DCTERMS.publisher]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| An entity responsible for making the resource available. Examples include a person, an organization, or a service. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
| It may be replaced by the literal value in form of &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.publisher&amp;quot; content=&amp;quot;...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#references|DCTERMS.references]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that is referenced, cited, or otherwise pointed to by the described resource. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#relation|DCTERMS.relation]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#replaces|DCTERMS.replaces]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that is supplanted, displaced, or superseded by the described resource. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#requires|DCTERMS.requires]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that is required by the described resource to support its function, delivery, or coherence. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#rightsHolder|DCTERMS.rightsHolder]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A person or organization owning or managing rights over the resource. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
| It may be replaced by the literal value in form of &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.rightsHolder&amp;quot; content=&amp;quot;...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#source|DCTERMS.source]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource from which the described resource is derived. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dcterms.(property)#subject|DCTERMS.subject]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| The topic of the resource. &amp;lt;br /&amp;gt;&lt;br /&gt;
Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-disclosure|disclosure]]&lt;br /&gt;
| Not allowed&lt;br /&gt;
| External Resource&lt;br /&gt;
| The 'disclosure' Link Relation Type designates a list of patent disclosures or a particular patent disclosure itself made with respect to material for which such relation type is specified.&lt;br /&gt;
| [http://tools.ietf.org/html/draft-yevstifeyev-disclosure-relation The 'disclosure' Link Relation Type]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-discussion|discussion]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to discussion of the current document or post.&lt;br /&gt;
| [[rel-discussion]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dns-prefetch|dns-prefetch]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Tells the browser to perform dns lookup for host names ahead of use.&lt;br /&gt;
| [https://developer.mozilla.org/En/Controlling_DNS_prefetching Mozilla documentation] [http://dev.chromium.org/developers/design-documents/dns-prefetching Google documentation]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-edit|edit]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Tells the browser where the current page can be edited&lt;br /&gt;
| [http://universaleditbutton.org/Registered_MIME_type#Alternate_Linking_Scheme Universal Edit Button Alternate Linking Scheme].  Implemented in at least [http://mediawiki.org MediaWiki].&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-edituri|EditURI]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A blogging auto discovery value, commonly used by WordPress&lt;br /&gt;
| [http://bitworking.org/projects/atom/draft-gregorio-09.html#Edit AtomAPI]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-enclosure|enclosure]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| External Resource&lt;br /&gt;
| Indicates that the referred resource is intended to be downloaded and cached.&lt;br /&gt;
| [[rel-enclosure]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-entry-content|entry-content]]&lt;br /&gt;
| Not allowed&lt;br /&gt;
| External Resource&lt;br /&gt;
| Indicates that the referenced document is an alternative display source for an Internet Explorer Web Slice.&lt;br /&gt;
| [http://msdn.microsoft.com/en-us/library/cc304073(VS.85).aspx#_alternative Web Slice format specification 0.9]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-external|external]]&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Indicates that the referenced document is not part of the same site as the current document.&lt;br /&gt;
| [[rel-external]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-home|home]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to the top level document for the current document. It can be combined with 'alternate' to indicate a feed for the site of the current page.&lt;br /&gt;
| [[rel-home]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-hub|hub]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to a hub that enables registration for notification of updates to the current page.&lt;br /&gt;
| [http://pubsubhubbub.googlecode.com/svn/trunk/pubsubhubbub-core-0.3.html#discovery PubSubHubbub Spec]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-in-reply-to|in-reply-to]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to an original post that the current page is a comment on or reply to.&lt;br /&gt;
| [[rel-in-reply-to]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-index|index]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to a document providing a list of topics with pointers that pertain to the current document.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-indieauth|indieauth]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| the IndieAuth server for the relying party to contact for IndieAuth authentication&lt;br /&gt;
| [http://spec.indieauth.com/ IndieAuth specification]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-issues|issues]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to issues regarding the current document or specification.&lt;br /&gt;
| [[rel-discussion]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-lightbox|lightbox]]&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Img Pop-Up&lt;br /&gt;
| Images with this attribute are displayed in a larger way than embedded in a website (or how you specified it) when clicked (e.g. with installed &amp;quot;Lightbox 2&amp;quot;-Plugin). When adding [group] to rel=&amp;quot;lightbox&amp;quot; all images get a clickable button for next/prev; insert into &amp;lt;code&amp;gt;&amp;amp;lt;a rel=&amp;quot;lightbox[group]&amp;quot;&amp;gt;&amp;amp;lt;img src=&amp;quot;http:example.com/img.jpg&amp;quot;&amp;gt;&amp;amp;lt;/a&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://lokeshdhakar.com/projects/lightbox2/ Lightbox 2] (needs actual specification to be kept in this list, this link is just documentation of one implementation)&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-manifest|manifest]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Imports or links to a manifest&lt;br /&gt;
| [http://w3c.github.io/manifest/#linking W3C Manifest for web application]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-meta|meta]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| External metadata about the HTML document&lt;br /&gt;
| [http://www.w3.org/TR/2004/REC-rdf-syntax-grammar-20040210/#section-rdf-in-HTML W3C's RDF/XML Syntax Specification]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-indieauth|micropub]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| the micropub endpoint for creating new posts&lt;br /&gt;
| [http://indiewebcamp.com/micropub  Micropub scecification]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-openid.delegate|openid.delegate]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| When the page that contains the link is used as an OpenID indentifier, the relying party perform sOpenID 1.1 authentication with the link target as the identifier instead. &lt;br /&gt;
| [http://openid.net/specs/openid-authentication-1_1.html#delegating_authentication OpenID Authentication 1.1]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-openid.server|openid.server]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| The OpenID server for the relying party to contact for OpenID 1.1 authentication&lt;br /&gt;
| [http://openid.net/specs/openid-authentication-1_1.html#anchor4 OpenID Authentication 1.1]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-openid2.local_id|openid2.local_id]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| When the page that contains the link is used as an OpenID indentifier, the relying party perform sOpenID 2.0 authentication with the link target as the identifier instead. &lt;br /&gt;
| [http://openid.net/specs/openid-authentication-2_0.html#rfc.section.7.3.3 OpenID Authentication 2.0]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-openid2.provider|openid2.provider]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| The OpenID server for the relying party to contact for OpenID 2.0 authentication&lt;br /&gt;
| [http://openid.net/specs/openid-authentication-2_0.html#rfc.section.7.3.3 OpenID Authentication 2.0]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-p3pv1|p3pv1]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| References a machine-readable privacy policy description in the P3P format&lt;br /&gt;
| [http://www.w3.org/TR/P3P/#syntax_link P3P spec]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-pgpkey|pgpkey]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Associates a PGP key with a Web page so that the Web page URL can be used as the commenter's URL in PGP-signed blog comments and the blogging system receiving the comment can fetch the key and verify the signature as belonging to the owner of the URL.&lt;br /&gt;
| [http://golem.ph.utexas.edu/~distler/blog/archives/000320.html PGP-Signed Comments]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-pingback|pingback]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| gives the address of the pingback server that handles pingbacks to the current document&lt;br /&gt;
| [http://www.hixie.ch/specs/pingback/pingback Pingback]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-prerender|prerender]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| External Resource&lt;br /&gt;
| Prerenders the Web page targeted by the link including running it scripts.&lt;br /&gt;
| [[rel-prerender]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-profile|profile]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Contextual External Resource &lt;br /&gt;
| indicate[s] that the destination of that hyperlink is a metadata profile (e.g. an [[XMDP]] profile) for the current page or portion thereof. See also [[xmdp-brainstorming]].&lt;br /&gt;
| [http://microformats.org/wiki/rel-profile rel-profile]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-publisher|publisher]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| External Resource &lt;br /&gt;
| Indicates that the referenced document is a metadata profile (e.g., a social-media/real-name profile such as a Google+ profile) for the publisher of the current page, or some portion of the current page.&lt;br /&gt;
| [https://support.google.com/plus/answer/1713826?hl=en Google help page]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-rendition|rendition]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| External Resource&lt;br /&gt;
| Indicates some example rendering, interpretation, or depiction of the source. User agents may choose to execute, display, or render the target in-place; or navigate to the target.&lt;br /&gt;
| [http://www.globalmentor.com/specs/html-rel-rendition/ HTML rel rendition]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-reply-to|reply-to]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| indicates any mailbox(es) (i.e. email addresses) to which responses are to be sent. ''Note: this is distinct from the 'in-reply-to' value which refers to the originating document, not to the address where comments should be sent.&lt;br /&gt;
| [http://tools.ietf.org/html/rfc2822 RFC2822] (originally [http://tools.ietf.org/html/rfc822#section-4.4.3 RFC822])&lt;br /&gt;
|&lt;br /&gt;
| ratified&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-service|service]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Atom Publishing Protocol editing service autodiscovery.&lt;br /&gt;
| [http://wiki.whatwg.org/wiki/ServiceRelExtension Documentation on the WHATWG wiki]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-shortlink|shortlink]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specifies the preferred shortened URL for the page.&lt;br /&gt;
| [http://code.google.com/p/shortlink/wiki/Specification shortlink spec]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sidebar|sidebar]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Indicates that the referenced document is intended to be shown in a secondary browsing context.&lt;br /&gt;
| [[rel-sidebar]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sitemap|sitemap]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Provides a link to an XML document describing the layout of the site.&lt;br /&gt;
| [[rel-sitemap]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-subresource|subresource]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| An external resource intended for use within the current page.&lt;br /&gt;
| [http://www.chromium.org/spdy/link-headers-and-server-hint/link-rel-subresource Chromium documentation]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-syndication|syndication]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to a page which is a syndicated copy of the current page.&lt;br /&gt;
| [[rel-syndication]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-timesheet|timesheet]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Applies a timesheet to the document.&lt;br /&gt;
| [http://www.w3.org/TR/timesheets/#smilTimesheetsNS-Elements-Timesheet non-normative section in the Timesheet spec]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-token_endpoint|token_endpoint]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specify an HTTP endpoint that micropub clients can use to obtain an access token given an authorization code&lt;br /&gt;
| [http://indiewebcamp.com/token-endpoint token endpoint documentation]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-webmention|webmention]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| gives the address of the webmention endpoint that handles webmentions to the current document&lt;br /&gt;
| [http://webmention.org/ WebMention specification]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-widget|widget]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| External Resource&lt;br /&gt;
| Autodiscovery for W3C widgets&lt;br /&gt;
| [http://dev.w3.org/2006/waf/widgets/Overview.html#linking-to-a-widget-package-from-a-html- non-normative section in the Widget packaging spec]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-wlwmanifest|wlwmanifest]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Windows Live Writer manifest autodiscovery&lt;br /&gt;
| [http://msdn.microsoft.com/en-us/library/bb463263.aspx documentation on MSDN]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-image_src|image_src]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specify a Webpage Icon for use by Facebook, Yahoo, Digg, etc.&lt;br /&gt;
| Unknown, but see for instance [http://www.niallkennedy.com/blog/2009/03/enhanced-social-share.html this]&lt;br /&gt;
| probably redundant with rel=icon&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-cmis-acl|http://docs.oasis-open.org/ns/cmis/link/200908/acl]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| External Resource&lt;br /&gt;
| Identifies the resource containing a CMIS ACL document for the link context&lt;br /&gt;
| [http://docs.oasis-open.org/cmis/CMIS/v1.0/cs01/cmis-spec-v1.0.html#_Toc243905525 CMIS 1.0, Section 3.4.3.4]&lt;br /&gt;
| &lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-stylesheet/less|stylesheet/less]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Less CSS framework stylesheets.&lt;br /&gt;
| [http://lesscss.org/#-client-side-usage Less CSS usage]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== brainstorming ==&lt;br /&gt;
Several rel values are being brainstormed as potential microformats and are thus listed here. If you find you have a use for such semantics in real world examples, &amp;lt;strong&amp;gt;consider trying out&amp;lt;/strong&amp;gt; these values and provide feedback on the respective brainstorming page(s) with your results and experiences.&lt;br /&gt;
&lt;br /&gt;
You may list new proposed rel values here, and even better if you can list and link to POSH uses in the wild.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! summary !! brainstormed in and usage in the wild&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-accessibility|accessibility]] || indicate[s] that the destination of that hyperlink contains accessibility information for the current page. || [http://www.brucelawson.co.uk/2009/rel-accessibility/ blog post] which itself uses the rel value in a &amp;amp;lt;link&amp;amp;gt; tag in the head of the document.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-author|author]] || indicate[s] that the destination of that hyperlink represents the author of the current page. Combines with [[rel-me|rel-me]] to chain authorship information. || Google has said it will index rel-Author in this [http://googlewebmastercentral.blogspot.com/2011/06/authorship-markup-and-web-search.html blog post], with further [http://www.google.com/support/webmasters/bin/answer.py?answer=1229920 discussion of the rel-me connection] See also [http://dev.w3.org/html5/spec/Overview.html#link-type-author the HTML5 spec]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-bibliography|bibliography]] || indicate[s] that the destination of that hyperlink is a bibliography for the current page. || [http://microformats.org/discuss/mail/microformats-discuss/2007-October/010863.html mailing list post, 2007-10-15]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-cite|cite]] || indicate[s] that the destination of that hyperlink is an authoritative source or a precedent to the current page. || [[distributed-conversation-brainstorming]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-group|group]] || the referenced document represents a group to which the person represented by the current document belongs || [[group-brainstorming]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-jslicense|jslicense]]&lt;br /&gt;
| Refers to a document with JavaScript source code and license information (also called a [http://www.gnu.org/licenses/javascript-labels.html JavaScript License Web Labels] page). We might want choose a keyword for this that is more general -- there are many situations besides JavaScript in which it is desirable or required by license agreements (e.g., GNU GPL) to make an offer of both the source code and a copy of a license when distributing object code versions of a given work.&lt;br /&gt;
|* Brainstorming page -- thoughts on the name?&lt;br /&gt;
* Ex. [http://www.eff.org EFF.org] (on &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt;) &lt;br /&gt;
* Ex. [http://www.fsf.org FSF.org] (on &amp;lt;code&amp;gt;a&amp;lt;/code&amp;gt;)&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;span id=&amp;quot;longdesc&amp;quot;&amp;gt;[[rel-longdesc|longdesc]]&amp;lt;/span&amp;gt; || Alternative to the img longdesc attribute, for use on visible links || [http://www.google.com/search?q=rel%3D%22longdesc%22 Google search for rel=longdesc in the wild] shows many sources of proposals. Please edit this to list the earliest and perhaps most recent/comprehensive proposal. No known real world POSH usage in the wild yet.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-map|map]] || Link to a map. Possibly embedded within an adr, hCard, geo or hCalendar. Parsers {{may}} attempt to parse the URL if it is a link to a known map site (e.g. Geohash, Google Maps, Multimap) and extract co-ordinates and other useful data. || (to [[User:TobyInk|TobyInk]] by email)&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-member|member]] || the referenced document represents a member of the group represented by the current document || [[group-brainstorming]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-m_PageScroll2id|m_PageScroll2id]] || JS to scroll to a defined ID || [[group-brainstorming]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-preconnect|preconnect]] || indicates an origin that will be used to fetch required resources. Initiating an early connection, which includes the DNS lookup, TCP handshake, and optional TLS negotiation, allows the user agent to mask the high costs of connection establishment latency.|| [https://igrigorik.github.io/resource-hints/#preconnect resource hints draft]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-prefetch|prefetch]] || indicates the URL and content-type of a resource that is likely to be a required resource when the next action or navigation is triggered. Initiating an early fetch allows the user agent to mask the request latency of the resource and make it available sooner to the application.|| [https://igrigorik.github.io/resource-hints/#prefetch resource hints draft]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-preload|preload]] || indicates the URL and content-type of a resource that should be fetched as early as possible by the user agent. Initiating an early fetch allows the user agent to mask the request latency of the resource and make it available sooner to the application.|| [https://igrigorik.github.io/resource-hints/#preload resource hints draft]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-prerender|prerender]] || indicates the URL of the next navigation target. Initiating a prerender allows the user agent to deliver an instant navigation experience: the user agent downloads the top-level resource and its assets, and performs all of the processing steps required to show the page without actually showing it to the user.|| [https://igrigorik.github.io/resource-hints/#prerender resource hints draft]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-profile|profile]] || indicate[s] that the destination of that hyperlink is a metadata profile (e.g. an [[XMDP]] profile) for the current page or portion thereof || [[xmdp-brainstorming]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-shortlink|shortlink]] || the referenced document represents the current document but with a shorter URL || [http://samj.net/2009/04/introducing-relshort-better-alternative.html blog post]&lt;br /&gt;
|-&lt;br /&gt;
| source || the referenced document represents the source code for the current document or project || [[source-brainstorming]] [http://adactio.com/journal/6667/ blog post]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| vcalendar-parent || link from an event to a containing event || [[User:TobyInk/hcalendar-1.1|hCalendar 1.1 draft]]&lt;br /&gt;
|-&lt;br /&gt;
| vcalendar-child || link from an event to a contained event || [[User:TobyInk/hcalendar-1.1|hCalendar 1.1 draft]]&lt;br /&gt;
|-&lt;br /&gt;
| vcalendar-sibling || link from an event to a related event with the same container || [[User:TobyInk/hcalendar-1.1|hCalendar 1.1 draft]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-status|status]] || the referenced document represents the status (or source of status updates) for the author of this document || [http://monkinetic.com/2009/11/24/status-autodiscovery-relstatus.html blog post]&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== more brainstorming ===&lt;br /&gt;
See also:&lt;br /&gt;
* [[genealogy-brainstorming]] for some thoughts on possible additional values for family relationships (use existing [[XFN]] [[rel-parent|parent]], [[rel-child|child]], [[rel-sibling|sibling]], [[rel-spouse|spouse]], [[rel-kin|kin]] values first though)&lt;br /&gt;
* [[xpn-brainstorming]] for some thoughts on possible additional values for professional relationships (use existing [[XFN]] [[rel-co-worker|co-worker]], [[rel-colleague|colleague]] values first though)&lt;br /&gt;
&lt;br /&gt;
== POSH usage ==&lt;br /&gt;
There are numerous rel values used as [[POSH]], both in the wild, whose origins are not necessarily known, nor are their meanings consistent.  There are also numerous rel values from external proposals of varying degrees of merit.  It is useful to document their existence and summarize their implied meanings/usage intent as research that may be used to perhaps take one or more of them thru the microformats [[process]] if there is both sufficient interest and sufficient in the wild usage.&lt;br /&gt;
&lt;br /&gt;
Note: If a value is missing from this table, it may have either already been promoted by writing it up as a proposal, or demoted by being explicitly dropped. Please check the other tables first before adding to this table.&lt;br /&gt;
&lt;br /&gt;
Note: this list is incomplete, please help complete it from the following sources:&lt;br /&gt;
&lt;br /&gt;
External sources: &lt;br /&gt;
* [http://developer.mozilla.org/about/meta Meta Information in DevMo Docs] (DevMo)&lt;br /&gt;
* [http://wiki.mozilla.org/Microsummaries Microsummary]&lt;br /&gt;
* [http://lachy.id.au/dev/markup/specs/wclr/ Web Communication Link Relationships] (WCLR)&lt;br /&gt;
* [http://www.w3.org/MarkUp/Relationships.html W3C Link Relationship values draft] (LRdraft) - from a draft of the HTML spec circa 1991. &lt;br /&gt;
* [http://www.whatwg.org/specs/web-apps/current-work/multipage/section-links.html#linkTypes HTML5 draft] '''Liable to change'''&lt;br /&gt;
* [http://wiki.foaf-project.org/Autodiscovery FOAF Project Wiki: Autodiscovery] (FOAF)&lt;br /&gt;
* [http://www.apps.ietf.org/rfc/rfc4685.html RFC4685]&lt;br /&gt;
* [http://googlewebmastercentral.blogspot.com/2009/02/specify-your-canonical.html Google Blog]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! summary !! origin !! proposal(s)&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-archive|archive]] || index of archived entries || unknown, perhaps Wordpress open source blogging software || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-archives|archives]] || Provides a link to a collection of records, documents, or other materials of historical interest. ||  || HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|[[rel-author|author]]||see brainstorming above for suggested use by google||unknown || DevMo / HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-canonical|canonical]] || To help search engines disambiguate the same page with multiple representations || Google || [http://googlewebmastercentral.blogspot.com/2009/02/specify-your-canonical.html Google]/[http://www.bing.com/community/blogs/webmaster/archive/2009/02/12/partnering-to-help-solve-duplicate-content-issues.aspx Microsoft]/[http://www.ysearchblog.com/2009/02/12/fighting-duplication-adding-more-arrows-to-your-quiver/ Yahoo!], [http://blog.ask.com/2009/02/ask-is-going-canonical.html Ask Jeeves]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-comment|comment]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-contribution|contribution]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-edituri|EditURI]] &lt;br /&gt;
| Location of the xml-rpc gateway for a Wordpress install that allows external programs to add, edit and delete posts. Used by &amp;quot;[http://codex.wordpress.org/Weblog_Client WordPress blog client]&amp;quot; software for automating posting and updating blog content from your desktop. || Seen in [http://www.wordpress.org/ WordPress], e.g. [http://www.tom-watson.co.uk/].  || Description stubbed in [[rel-edituri]].&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-endorsed|endorsed]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-fan|fan]] || xxxx. || &amp;amp;hellip; || [[hcard-user-profile-authoring]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-feed|feed]] || Gives the address of a syndication feed for the current document. || &amp;amp;hellip; || WCLR/ HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-footnote|footnote]] || Location of the footnote on a link to a footnote. || Markdown preprocessors such as [http://maruku.rubyforge.org/ Maruku] || HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-icon|icon]] || Imports an icon to represent the current document. (Allowed in &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt; only) || [http://dev.w3.org/html5/spec-LC/links.html#rel-icon HTML5] || WCLR/HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-kinetic-stylesheet|kinetic-stylesheet]] || Imports a [http://kssproject.org/ KSS] 'kinetic stylesheet' to bind dynamic behavior to elements || Used in the [http://plone.org Plone] Content Management System || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-lightbox|lightbox]] || Hook - Indicates that following the link will trigger a &amp;quot;lightbox&amp;quot; script (Allowed in &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt; only) || ([http://www.google.co.uk/search?q=rel%3D%22lightbox%22 Google search for rel=lightbox in the wild]) || &amp;amp;hellip; &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-lightbox|lightbox[group_name]]] || Used by lightbox scripts to group different sets of images together.  Images from one group will not appear in another group's lightbox.  See also &amp;quot;lightbox&amp;quot;. || [http://lokeshdhakar.com/projects/lightbox2/#how Lightbox 2] || &amp;amp;hellip; &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-prettyPhoto|prettyPhoto]] || See also &amp;quot;lightbox&amp;quot; || ([http://www.google.fr/search?q=rel%3D%22prettyphoto%22 Google search for rel=&amp;quot;prettyphoto&amp;quot; in the wild]) || &amp;amp;hellip; &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-clearbox|clearbox]] || See also &amp;quot;lightbox&amp;quot; || ([http://www.google.fr/search?q=rel%3D%22clearbox%22 Google search for rel=&amp;quot;clearbox&amp;quot; in the wild]) || &amp;amp;hellip; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-made|made]] || &amp;amp;hellip; || &amp;amp;hellip; || LRdraft&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-meta|meta]] || &amp;amp;hellip; ||  [http://www.w3.org/TR/1999/REC-rdf-syntax-19990222/#transport 1999 W3C RDF syntax REC] || FOAF&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-microsummary|microsummary]]|| &amp;amp;hellip; || &amp;amp;hellip; ||[http://wiki.mozilla.org/Microsummaries Microsummary], be aware of: [[page-summary-formats#Issues_2|microsummary issues]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-noreferrer|noreferrer]] || indicates that no referrer information is to be leaked when following the link. || [http://dev.w3.org/html5/spec-LC/links.html#rel-noreferrer HTML5] || HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-openid-delegate|openid.delegate]] || &amp;amp;hellip; || ([http://www.google.co.uk/search?q=%22rel%3Dopenid%22 Google search for rel=openid.* in the wild]) || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-openid-server|openid.server]] || &amp;amp;hellip; || ([http://www.google.co.uk/search?q=%22rel%3Dopenid%22 Google search for rel=openid.* in the wild]) || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-permalink|permalink]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-pgpkey|pgpkey]] || (see also rel-publickey) || &amp;amp;hellip; || [http://golem.ph.utexas.edu/~distler/blog/archives/000320.html], [http://golem.ph.utexas.edu/~distler/blog/archives/000325.html]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-pingback|pingback]] || Gives the address of the pingback server that handles pingbacks to the current document. (Allowed in &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt; only) || &amp;amp;hellip; || WCLR/ HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-popover|popover]] || Used by a JS widget to display a large, descriptive tooltip. || [http://twitter.github.com/bootstrap Twitter's Bootstrap] [http://twitter.github.com/bootstrap/javascript.html#popovers Popover.js] || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-prefetch|prefetch]] || Specifies that the target resource should be pre-emptively cached. (Allowed in &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt; only) || &amp;amp;hellip; || HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-privacy|privacy]] || Specifies that the target resource is the privacy policy. || &amp;amp;hellip; || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-publickey|publickey]] || (see also rel-pgpkey) || &amp;amp;hellip; || [http://rasterweb.net/raster/2002/12/12/20021212072812/]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-referral|referral]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-related|related]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-replies|replies]] || indicates a continued thread || unknown || [http://www.apps.ietf.org/rfc/rfc4685.html RFC4685]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-resource|resource]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-search|search]] || &amp;amp;hellip; || unknown || unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sitemap|sitemap]] || Links to a site map document. || &amp;amp;hellip; || http://www.sitemaps.org/&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sponsor|sponsor]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-tooltip|tooltip]] || Used by a JS widget to display a tooltip similar (though more customizable) to what is shown by browsers if the 'title' attribute is present. || [http://twitter.github.com/bootstrap Twitter's Bootstrap] [http://twitter.github.com/bootstrap/javascript.html#tooltips Tooltip.js] (and likely other JS tools) || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-trackback|trackback]] || &amp;amp;hellip; || unknown, perhaps open source Movable Type blogging software || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-unendorsed|unendorsed]] || (probably redundant to [[rel-nofollow|nofollow]]) || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-user|user]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-wlwmanifest|wlwmanifest]] || Used by &amp;quot;[http://explore.live.com/windows-live-writer Windows Live Writer],&amp;quot; a Microsoft [http://codex.wordpress.org/Weblog_Client blog client] for automating posting and updating blog content from your desktop. || Seen in [http://www.wordpress.org/ WordPress], e.g. [http://www.tom-watson.co.uk/]. Similar values are probably used by other blog content management systems as well. || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== WCLR ===&lt;br /&gt;
&lt;br /&gt;
The WCLR proposal is described by its author (in e-mail, 2007-09-25) as:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&amp;amp;hellip;now effectively obsolete, since HTML5 and Microformats cover all the worthwhile relationships in that already.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
These are [http://www.whatwg.org/specs/web-apps/current-work/multipage/section-links.html#linkTypes covered by HTML5 already]:&lt;br /&gt;
&lt;br /&gt;
* permalink -&amp;gt; bookmark&lt;br /&gt;
* archive -&amp;gt; archives&lt;br /&gt;
* feed&lt;br /&gt;
* pingback&lt;br /&gt;
* unendorsed -&amp;gt; nofollow&lt;br /&gt;
&lt;br /&gt;
The rest now seem unnecessary.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Nonetheless, there may be some mileage in using them in microformats, at least until HTML5 is widely available.&lt;br /&gt;
&lt;br /&gt;
== Dublin Core ==&lt;br /&gt;
In the past, Dublin Core values have been added to this page in the table about HTML5 features, but no examples, nor an actual specification explicitly stating how the value(s) should be used in HTML could be found. The linked specifications below have been updated so we should start considering Dublin Core values accordingly.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! summary !! source&lt;br /&gt;
|-&lt;br /&gt;
| schema.DC || a specification of all metadata terms maintained by the Dublin Core Metadata Initiative, with regard to the fifteen terms of the Dublin Core Metadata Element Set already published || [http://www.dublincore.org/documents/dcq-html/ Dublin Core]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| schema.DCTERMS || a specification of all metadata terms maintained by the Dublin Core Metadata Initiative, reflecting the changes described more fully in the 2012 document &amp;quot;Maintenance changes to DCMI Metadata Terms&amp;quot; [http://dublincore.org/usage/decisions/2012/dcterms-changes/] || [http://www.dublincore.org/documents/dcq-html/ Dublin Core]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
'''Issues need updating given new information from linked resources.'''&lt;br /&gt;
&lt;br /&gt;
Notes:&lt;br /&gt;
* Dublin Core. This search may help: [http://www.google.co.uk/search?as_q=rel%3Dschema.*&amp;amp;hl=en&amp;amp;num=10&amp;amp;btnG=Google+Search&amp;amp;as_epq=&amp;amp;as_oq=&amp;amp;as_eq=&amp;amp;lr=&amp;amp;as_ft=i&amp;amp;as_filetype=&amp;amp;as_qdr=all&amp;amp;as_occt=any&amp;amp;as_dt=i&amp;amp;as_sitesearch=http%3A%2F%2Fdublincore.org&amp;amp;as_rights=&amp;amp;safe=images]. &lt;br /&gt;
** '''examples from that search only use invisible &amp;lt;code&amp;gt;&amp;amp;lt;link href&amp;amp;gt;&amp;lt;/code&amp;gt; element'''. At first glance it appears the results from the search show only uses with the invisible &amp;lt;code&amp;gt;&amp;amp;lt;link href&amp;amp;gt;&amp;lt;/code&amp;gt; element which is not ideal for content relationships.  Content relationships should be user visible and thus uses with &amp;lt;code&amp;gt;&amp;amp;lt;a href&amp;amp;gt;&amp;lt;/code&amp;gt; are strongly preferred.  &lt;br /&gt;
*** [http://www.ietf.org/rfc/rfc2731.txt RFC2731] defines &amp;lt;code&amp;gt;rel=&amp;quot;schema.AC&amp;quot;&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;rel=&amp;quot;schema.RC&amp;quot;&amp;lt;/code&amp;gt; with the pattern &amp;lt;code&amp;gt;rel=&amp;quot;schema.PREFIX&amp;quot;&amp;lt;/code&amp;gt; as a syntax for defining namespaces for use in meta[@name], *[@rel], *[@rev] and (as per eRDF) *[@class] attributes. A link to a Dublin Core metadata schema is generally not suitable for end users, so &amp;lt;code&amp;gt;&amp;amp;lt;link href&amp;amp;gt;&amp;lt;/code&amp;gt; appears to be more appropriate than &amp;lt;code&amp;gt;&amp;amp;lt;a href&amp;amp;gt;&amp;lt;/code&amp;gt; for those that use Dublin Core metadata schemas.&lt;br /&gt;
*** The scheme proposed above provides metadata namespace declarations. As described by DCMI specifications, such indications '''cannot''' be provided w/o a suitable namespace. In order to give complete pieces of information, the correct description set must be: &amp;lt;code&amp;gt;&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot;&amp;amp;gt;&amp;lt;/code&amp;gt; (for the namespace declaration, followed by) &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.&amp;lt;nowiki&amp;gt;[element]&amp;lt;/nowiki&amp;gt;&amp;quot; content=&amp;quot;&amp;lt;nowiki&amp;gt;[element.value]&amp;lt;/nowiki&amp;gt;&amp;quot;&amp;amp;gt;&amp;lt;/code&amp;gt; for related elements. &lt;br /&gt;
**** Note: [http://purl.org/dc/terms/ schema.DCTERMS] is conventionally related to an upgraded elements list than [http://purl.org/dc/elements/1.1/ schema.DC] and should be preferred as rel values. Both are discussed here for subject completeness) &lt;br /&gt;
** '''proposal to use in content currently only theoretical'''. Thus unfortunately the use of Dublin Core in user visible content like &amp;lt;code&amp;gt;&amp;amp;lt;a href&amp;amp;gt;&amp;lt;/code&amp;gt; appears to be strictly theoretical. See [http://microformats.org/discuss/mail/microformats-discuss/2008-January/011445.html microformats-discuss/2008-January/011445.html] for a proposal to use Dublin Core in user visible content.&lt;br /&gt;
*** '''recent improvements'''. DCMI solves some trouble concerning metadata through the ''description set model''. Some of these informations cannot currently be provided in any standard ways other than DC, namely dates, validity and periodicity. Following this public bug report ([https://www.w3.org/Bugs/Public/show_bug.cgi?format=multiple&amp;amp;id=22520]), the correct namespace declaration for DC and DCTERMS metadata are now considered valid HTML code. We '''must''' encourage this practice both for internal usefulness and for shared practices. &lt;br /&gt;
&lt;br /&gt;
* The Dublin Core document [http://dublincore.org/documents/dc-html/ &amp;quot;Expressing Dublin Core metadata using HTML/XHTML meta and link elements&amp;quot;] is a specification for, and gives examples of, both &amp;lt;link rel=&amp;quot;schema.DC&amp;quot; href=&amp;quot;http://purl.org/dc/elements/1.1/&amp;quot;&amp;gt; and &amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot;&amp;gt;. Note that Dublin Core encourages the use of DCTERMS elements over DC. A list of projects which use Dublin Core metadata is maintained [http://dublincore.org/projects/ here].&lt;br /&gt;
* [http://dublincore.org/documents/dc-html/ &amp;quot;Expressing Dublin Core metadata using HTML/XHTML meta and link elements&amp;quot;] also includes examples of &amp;lt;link rel=&amp;quot;DCTERMS.[element]&amp;quot; href=&amp;quot;&amp;quot;&amp;gt;, where [element] = subject, isReferencedBy, creator, and publisher. The &amp;lt;link&amp;gt; tag is used instead of the &amp;lt;meta&amp;gt; tag whenever the content is a URL. (Note that this use is different from, but related to, &amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;quot;&amp;gt;.) Potentially, ''any'' of the 55 DCTERMS elements could be used in this way, and this could include use in HTML 5.&lt;br /&gt;
** As said before, HTML5 validators now allow the use of &amp;lt;code&amp;gt;&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot;&amp;amp;gt;&amp;lt;/code&amp;gt; for namespace declarations.&lt;br /&gt;
&lt;br /&gt;
== Use with HTTP Link Header ==&lt;br /&gt;
You can also use any of the rel values (that are allowed for link elements) with HTTP Link Headers, &lt;br /&gt;
&lt;br /&gt;
Example: returning a Javascript file with a license (since JS itself has no way to indicate a license)&lt;br /&gt;
&amp;lt;source lang=text&amp;gt;&lt;br /&gt;
Link: &amp;lt;http://creativecommons.org/publicdomain/zero/1.0/&amp;gt;; rel=&amp;quot;license&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For multiple licenses (e.g. CC-SA and GPL), simply use multiple &amp;lt;code&amp;gt;Link:&amp;lt;/code&amp;gt; headers.&lt;br /&gt;
&amp;lt;source lang=text&amp;gt;&lt;br /&gt;
Link: &amp;lt;http://creativecommons.org/licenses/by-sa/3.0/&amp;gt;; rel=&amp;quot;license&amp;quot;&lt;br /&gt;
Link: &amp;lt;http://www.gnu.org/licenses/gpl.html&amp;gt;; rel=&amp;quot;license&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Example: similarly, linking to a copyright statement for an image:&lt;br /&gt;
&amp;lt;source lang=text&amp;gt;&lt;br /&gt;
Link: &amp;lt;http://example.org/copyright.html&amp;gt;; rel=&amp;quot;copyright&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
or providing a brief inline copyright statement:&lt;br /&gt;
&amp;lt;source lang=text&amp;gt;&lt;br /&gt;
Link: &amp;lt;data:text/plain;charset=utf-8,Copyright 2013 ExampleCo, All Rights Reserved.&amp;gt;; rel=&amp;quot;copyright&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== unspecified ==&lt;br /&gt;
Some rel values have been added to this page perhaps in one of the tables above, but no examples, nor an actual specification explicitly stating that the value(s) should be used in the HTML 'rel' attribute could be found. They are listed here in the hopes someone can discover more specific/precise URLs to examples or specifications about them (preferably both).  Until such precise URLs to examples/specs are provided, the values can be treated as they are purely theoretical and thus of little interest.&lt;br /&gt;
&lt;br /&gt;
A simple list here is sufficient.&lt;br /&gt;
&lt;br /&gt;
== non HTML rel values ==&lt;br /&gt;
There are markup languages other than HTML that also have a rel attribute, often based upon the HTML rel attribute.&lt;br /&gt;
It is useful to document some of these other languages and their rel values for both reference purposes, and to provide  background research for the possible development and re-use of these values in HTML, as [[poshformats]] or [[microformats]]&lt;br /&gt;
&lt;br /&gt;
Sources:&lt;br /&gt;
* [[Atom]] [[RFC4287]] specification. &lt;br /&gt;
* See http://www.iana.org/assignments/link-relations.html for more.&lt;br /&gt;
* See [http://amundsen.com/media-types/maze/format/#link-relations Maze+XML]&lt;br /&gt;
* See [http://amundsen.com/media-types/collection/format/#link-relations Collection+JSON]&lt;br /&gt;
* See [http://www.opensearch.org/Specifications/OpenSearch/1.1#Url_rel_values OpenSearch]&lt;br /&gt;
* See [http://tools.ietf.org/html/rfc6861 The Create-Form and Edit-Form Link Relations (RFC6861)]&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! summary&amp;lt;br /&amp;gt;(from the relevant specification where possible)) !! defining specification&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| self&lt;br /&gt;
| From http://www.ietf.org/rfc/rfc4287.txt : &amp;lt;blockquote&amp;gt;The value &amp;quot;self&amp;quot; signifies that the IRI in the value of the href attribute identifies a resource equivalent to the containing element.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
| [[Atom]] http://www.ietf.org/rfc/rfc4287.txt&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| http://gdata.youtube.com/schemas/2007#in-reply-to || See http://code.google.com/apis/youtube/2.0/developers_guide_protocol_comments.html || YouTube extension to Atom&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| collection || Refers to a resource which represents a collection of which the current resource is a member.&lt;br /&gt;
&lt;br /&gt;
When used in the Maze+XML media type, the associated URI returns the available collection of mazes.&lt;br /&gt;
  || Maze+XML, Collection+JSON, OpenSearch&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| east || Refers to a resource to the &amp;quot;east&amp;quot; of the current resource.&lt;br /&gt;
&lt;br /&gt;
When used in the Maze+XML media type, the associated URI points to a neighboring cell resource to the east in the active maze.&lt;br /&gt;
&lt;br /&gt;
 || Maze+XML&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| exit || Refers to a resource that represents the exit or end of the current client actvity or process.&lt;br /&gt;
&lt;br /&gt;
When used in the Maze+XML media type, the associated URI points to the final exit resource of the active maze.&lt;br /&gt;
&lt;br /&gt;
 || Maze+XML&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| north || Refers to a resource that is &amp;quot;north&amp;quot; of the current resource.&lt;br /&gt;
&lt;br /&gt;
When used in the Maze+XML media type, the associated URI points to a neighboring cell resource to the north in the active maze.&lt;br /&gt;
&lt;br /&gt;
 || Maze+XML&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| south || Refers to a resource that is &amp;quot;south&amp;quot; of the current resource.&lt;br /&gt;
&lt;br /&gt;
When used in the Maze+XML media type, the associated URI points to a neighboring cell resource to the south in the active maze.&lt;br /&gt;
&lt;br /&gt;
 || Maze+XML&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-via|via]] || Identifies a resource that is the source of the information in the context. ||  Atom 1.0 Syndication format (RFC 4287)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| west || Refers to a resource that is &amp;quot;west&amp;quot; of the current resource.&lt;br /&gt;
&lt;br /&gt;
When used in the Maze+XML media type, the associated URI points to a neighboring cell resource to the west in the active maze.&lt;br /&gt;
&lt;br /&gt;
 || Maze+XML&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| item || The target IRI points to a resource that is a member of a collection represented by the context IRI. || Collection+JSON&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| create-form || When included in a resource, the &amp;quot;create-form&amp;quot; link relation MAY identify a target resource that represents the form to append a new member to the link context. || See [http://tools.ietf.org/html/rfc6861 The Create-Form and Edit-Form Link Relations (RFC6861)]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| edit-form || When included in a resource, the &amp;quot;edit-form&amp;quot; link relation identifies a target resource that represents the form for editing associated resource. || See [http://tools.ietf.org/html/rfc6861 The Create-Form and Edit-Form Link Relations (RFC6861)]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| lightframe || Opens the target in a lightbox. On inclusion it provides a simple target the lightframe and loads the content in a lightbox effect || Lightbox&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| superbox[image] || jQuery Superbox! is a script which allows you display windows with the lightbox effect. || superbox&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| wp-video-lightbox || wp-video-lightbox! is a rel to anchor tag script display videos with the lightbox effect. || wp-video-lightbox&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| youtube || Opens the target youtube video in using the Swipebox Plugin || Swipebox&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| shadowbox || shadowbox is a jQuery script for images displaying with the &amp;quot;lightbox&amp;quot; effects. || shadowbox&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| permission || When included in a resource, the &amp;quot;permission&amp;quot; link relation MAY identify a target resource that represents the list of entities that can access or modify the resource in the link context. || See [http://cdoc.io/spec.html#permission-link-relation Collection Document Media Type Specification]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| version-history&lt;br /&gt;
| When included on a versioned resource, this link points to a resource containing the version history for this resource.&lt;br /&gt;
| [http://tools.ietf.org/html/rfc5829 RFC 5829]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| latest-version&lt;br /&gt;
| When included on a versioned resource, this link points to a resource containing the latest (e.g., current) version.&lt;br /&gt;
| [http://tools.ietf.org/html/rfc5829 RFC 5829]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| working-copy&lt;br /&gt;
| When included on a versioned resource, this link points to a working copy for this resource.&lt;br /&gt;
| [http://tools.ietf.org/html/rfc5829 RFC 5829]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| working-copy-of&lt;br /&gt;
| When included on a working copy, this link points to the versioned resource from which this working copy was obtained.&lt;br /&gt;
| [http://tools.ietf.org/html/rfc5829 RFC 5829]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| predecessor-version&lt;br /&gt;
| When included on a versioned resource, this link points to a resource containing the predecessor version in the version history.&lt;br /&gt;
| [http://tools.ietf.org/html/rfc5829 RFC 5829]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| successor-version&lt;br /&gt;
| When included on a versioned resource, this link points to a resource containing the successor version in the version history.&lt;br /&gt;
| [http://tools.ietf.org/html/rfc5829 RFC 5829]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| ... || ... || ...&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== dropped ==&lt;br /&gt;
The following rel values were in earlier version(s) of specification(s) and it is presumed by their absence from the most recent version of the respective specification(s) that they have been deprecated or obsoleted. &lt;br /&gt;
&lt;br /&gt;
In general, you {{should not}} use any dropped values.&lt;br /&gt;
&lt;br /&gt;
If any such values have been superceded by standard values (see the first table on this page), then you {{must not}} use the dropped versions.&lt;br /&gt;
&lt;br /&gt;
In particular:&lt;br /&gt;
* if a rel value was in a draft and is missing (without explanation) from the final spec, or&lt;br /&gt;
* if a rel value was in a previous version of and is missing (without explanation) from an update to the specification (even a draft update)&lt;br /&gt;
&lt;br /&gt;
Then absent any other information or explanation, it is presumed that the group/editors working on that specification decided to explicitly drop it (either in development, or in the updated version) and thus it should be obsoleted (not re-registered). &lt;br /&gt;
&lt;br /&gt;
If you wish to add them, please research &amp;lt;em&amp;gt;why&amp;lt;/em&amp;gt; such values were omitted from latter specifications before doing so. If you do discover the reasoning, please add a short statement or link to thereof into the appropriate place in the following table.&lt;br /&gt;
&lt;br /&gt;
If there is more data, e.g. a link to an email of discussion of the spec development that explains ''why'' the rel value was dropped, and it explicitly states, e.g. it was without prejudice, or merely post-poned, or perhaps expected to be spun-out into its spec (or some other explicit positive reason), then it makes to link/cite that explicit text as part of a proposal.&lt;br /&gt;
&lt;br /&gt;
Sources: &lt;br /&gt;
* [http://www.w3.org/MarkUp/html3/ HTML3] (HTML3) / has been superceded by [http://www.w3.org/MarkUp/Wilbur/ HTML 3.2] - which itself has been superceded by [http://www.w3.org/TR/REC-html40 HTML 4.0] - which itself has been updated by [http://w3.org/TR/html401 HTML 4.01], commonly referred to as &amp;quot;HTML 4&amp;quot; in this wiki and other places.)&lt;br /&gt;
* [http://www.w3.org/TR/relations.html Proposed HTML 4.0 link types] (HTML4dropped) - obsoleted/superceded by the HTML 4.0 Recommendation.  Any values that were in the &amp;quot;Proposed HTML 4.0 link types&amp;quot; document but didn't make it into the HTML 4.0 Recommendation were thus explicitly dropped and should be avoided.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! summary !! defining specification !! why dropped &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|[[rel-banner|banner]]||Was used to reference another document to be used as banner for this document (i.e. a form of &amp;quot;include&amp;quot; statement).|| HTML3 ||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-begin|begin]] || identifies the author-defined start of a sequence of documents of which the current document is a node.&lt;br /&gt;
 || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-biblioentry|biblioentry]] || identifies a bibliographic entry || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-bibliography|bibliography]] || identifies a bibliography || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-child|child]] (obsolete/superceded) || the target document is a hierarchical child, or subdocument, of the current document|| HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-citation|citation]] || the target is a bibliographic citation || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-collection|collection]] || the target document is an collection that contains the current document || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-definition|definition]] || identifies a definition of a term || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-disclaimer|disclaimer]] || identifies a hypertext link to a legal disclaimer || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-editor|editor]] || identifies a hypertext link to an editor || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-end|end]] || identifies the author-defined end of a sequence of documents of which the current document is a node. || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-footnote|footnote]] || the anchor is a footnote marker and the target is a footnote || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-navigate|navigate]] || the target document contains information such as a image map that will help users to gain a sense of how and where to found information || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-origin|origin]] || synonym for &amp;lt;code&amp;gt;top&amp;lt;/code&amp;gt; || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-parent|parent]] (obsolete/superceded) || the target document is the hierarchical parent, or container, of the current document|| HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-pointer|pointer]] || the target is a pointer to the real target. This value can be used by a user agent to perform a pre-fetch of the specified target for evaluation until the real target is reached || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-publisher|publisher]] || identifies a hypertext link to a publisher || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sibling|sibling]] (obsolete/superceded) || the target document is a child of a common parent, or a hierarchical peer of the current document|| HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-top|top]] || the target document is the logical top node of the tree (see also &amp;lt;code&amp;gt;begin&amp;lt;/code&amp;gt;) || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-trademark|trademark]] || identifies a hypertext link to a trademark notice || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-translation|translation]] || the target is a translation to another language || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-urc|urc]] || identifies a Universal Resource Citation || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== dropped without prejudice ==&lt;br /&gt;
In one known instance (from HTML4 to HTML5), some rel values were in an earlier version of a specification (or a proposal) and were dropped from a latter (draft) version, and it was noted that these values were dropped with the intent that they could still be proposed in a registry and thus they explicitly were not deprecated or obsoleted. This section documents such values as separate from the [[#dropped|dropped]] section.&lt;br /&gt;
&lt;br /&gt;
In general, you {{should not}} use any dropped values.&lt;br /&gt;
&lt;br /&gt;
If any such values have been superceded by standard values (see the first table on this page), then you {{must not}} use the dropped versions.&lt;br /&gt;
&lt;br /&gt;
Rel values that were dropped without prejudice from a specification will be considered similar to new values that have never been specified.&lt;br /&gt;
&lt;br /&gt;
If you know of additional rel values that were dropped without prejudice from an update to a specification, please cite a URL and quote from the group developing the specification that officially states from that group that the dropping of the values was done without prejudice, or equivalent statement (such as explicit allowance of external registration, proposal, and/or development).&lt;br /&gt;
&lt;br /&gt;
This table serves a historical purpose. If you wish to propose a value from this table, please copy it and leave it in place.&lt;br /&gt;
&lt;br /&gt;
Sources: &lt;br /&gt;
* Several rel values were [http://www.w3.org/Bugs/Public/show_bug.cgi?id=7475#c15 explicitly dropped from HTML5]. Per: [http://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html Issue 118 Decision] ('''emphasis''' added): &amp;lt;blockquote&amp;gt;&amp;lt;p&amp;gt;&amp;quot;The final proposal argues for the removal of some relation values, to wit, it suggests removal of '''index, up, first and last'''. It was pointed out in survey comments that these relations are already registered in the IANA link relation registry. Presumably, '''these relations could also be entered in whatever other registry or registries HTML5 adopts for this purpose'''.&amp;lt;/p&amp;gt;...&amp;lt;p&amp;gt;&amp;quot;Next Steps&amp;lt;/p&amp;gt;...&amp;lt;p&amp;gt;&amp;quot;Since the relations to be removed are already registered at the IANA link relation registry, no further action is needed to include them there. WG members are '''free to register or record these relations elsehwere''' [sic], as well.&amp;quot;&amp;lt;/p&amp;gt;&amp;lt;/blockquote&amp;gt; &lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value&lt;br /&gt;
! summary&lt;br /&gt;
! defining specification&lt;br /&gt;
! why dropped &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-first|first]]&lt;br /&gt;
| synonym for &amp;lt;code&amp;gt;begin&amp;lt;/code&amp;gt;&lt;br /&gt;
| HTML4dropped - never in an official spec&lt;br /&gt;
| [http://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html Explicitly dropped from HTML5 interim draft yet permitted for external registry]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-index|index]]&lt;br /&gt;
| Refers to a document providing an index for the current document.&lt;br /&gt;
| was in [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4]&lt;br /&gt;
| [http://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html Explicitly dropped from HTML5 interim draft yet permitted for external registry]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-last|last]]&lt;br /&gt;
| synonym for &amp;lt;code&amp;gt;end&amp;lt;/code&amp;gt;&lt;br /&gt;
| HTML4dropped - never in an official spec&lt;br /&gt;
| [http://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html Explicitly dropped from HTML5 interim draft yet permitted for external registry]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-up|up]]&lt;br /&gt;
|When the document forms part of a hierarchy, this link references the immediate parent of the current document.&lt;br /&gt;
| was in [http://www.w3.org/MarkUp/html3/dochead.html HTML3] - but [http://www.w3.org/TR/html401/types.html#type-links dropped in HTML4]&lt;br /&gt;
| [http://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html Explicitly dropped from HTML5 interim draft yet permitted for external registry]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
See related [http://dev.w3.org/html5/spec/links.html#linkTypes HTML5: Link types] for existing HTML5 specified rel values.&lt;br /&gt;
&lt;br /&gt;
== rejected ==&lt;br /&gt;
Some rel values have been proposed and rejected.  They are listed here to make that explicit.  Authors {{must not}} use rejected rel values.&lt;br /&gt;
&lt;br /&gt;
Source: [[rejected-formats]].&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! origin / proposal !! why rejected &lt;br /&gt;
|-&lt;br /&gt;
| [[rel-logo|logo]]&lt;br /&gt;
| [http://relogo.org Relogo.org]&lt;br /&gt;
| [[rejected-formats#Logo]]&lt;br /&gt;
|-&lt;br /&gt;
|[[rel-pavatar|pavatar]] || [http://pavatar.com/ pavatar] || [[rejected-formats#Pavatar]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== tools ==&lt;br /&gt;
See [[implementations]].&lt;br /&gt;
&lt;br /&gt;
== addtional external research ==&lt;br /&gt;
Here are some additional historical references to the development or rel-values which may be useful when researching values, especially why specific values may have been proposed but abandoned.&lt;br /&gt;
* 1996-06-07 [http://www.w3.org/MarkUp/draft-ietf-html-relrev-00.txt Hypertext links in HTML] (copies: [http://ftp.ics.uci.edu/pub/ietf/html/draft-ietf-html-relrev-00.txt ftp.ics.uci.edu])&lt;br /&gt;
* 1996-11-13 [http://www.w3.org/Architecture/NOTE-link Describing and Linking Web Resources] &lt;br /&gt;
* 1997-01-23 [http://lists.gnu.org/archive/html/lynx-dev/1997-01/msg00537.html LYNX-DEV Lynx and the LINK tag] &lt;br /&gt;
* 1997-01-24 [http://lists.w3.org/Archives/Public/w3c-sgml-wg/1997Jan/0357.html Taxonomy list] &lt;br /&gt;
* 1997-03-28 [http://www.w3.org/TR/WD-htmllink-970328 W3C Working Draft: Hypertext Links and Meta Information in HTML]&lt;br /&gt;
 &lt;br /&gt;
=== previous attempts at documenting ===&lt;br /&gt;
There have been previous attempts at documenting known rel values, most of which fell out of date due to being dependent on a single author maintaining them. They're listed here purely for historical reasons, and are not sufficient to be references of their own (since they're just individual curations of other references)&lt;br /&gt;
* [http://fantasai.tripod.com/qref/Appendix/LinkTypes/ltdef.html Link Type Definitions Glossary] by fantasai&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== related ==&lt;br /&gt;
{{rel-related-pages}}&lt;br /&gt;
* [[elemental-microformats]]&lt;br /&gt;
* [[existing-rev-values]]&lt;br /&gt;
* [[existing-class-names]]&lt;br /&gt;
&lt;br /&gt;
== copyright ==&lt;br /&gt;
&lt;br /&gt;
{{cc-pd-license}}&lt;/div&gt;</summary>
		<author><name>Andy sky</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=existing-rel-values&amp;diff=64850</id>
		<title>existing-rel-values</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=existing-rel-values&amp;diff=64850"/>
		<updated>2015-03-11T15:53:24Z</updated>

		<summary type="html">&lt;p&gt;Andy sky: Undo revision 64849 by Andy sky (Talk): missing footnotes template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt; existing rel values &amp;lt;/entry-title&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This page contains tables of known HTML rel values from specifications, formats, proposals, brainstorms, and non-trivial [[POSH]] usage in the wild.  In addition, dropped and rejected values are listed at the end for comprehensiveness.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;usage&amp;quot;&amp;gt;usage&amp;lt;/span&amp;gt;: see [[rel-faq#How_is_rel_used|how is 'rel' used]].  Regarding &amp;lt;span id=&amp;quot;rev&amp;quot;&amp;gt;rev&amp;lt;/span&amp;gt;, see: [[rel-faq#Should_rev_even_be_used|should 'rev' even be used]].&lt;br /&gt;
&lt;br /&gt;
This page is also the official rel registry ([http://www.whatwg.org/specs/web-apps/current-work/multipage/links.html#other-link-types][http://www.w3.org/TR/html5/links.html#other-link-types]). Add new and proposed rel values to the following section:&lt;br /&gt;
* [[existing-rel-values#HTML5_link_type_extensions|HTML5 link type extension]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== formats ==&lt;br /&gt;
These rel values are defined formats from specifications (HTML 4, microformats) are thus are &amp;lt;strong&amp;gt;recommended for general use&amp;lt;/strong&amp;gt;.  Alphabetically ordered by value.&lt;br /&gt;
&lt;br /&gt;
Note:&lt;br /&gt;
* &amp;lt;strong&amp;gt;Do not&amp;lt;/strong&amp;gt; add proposed rel values for HTML5 here, add them to the [[#HTML5_link_type_extensions|HTML5 link type extensions]] table.&lt;br /&gt;
* &amp;lt;strong&amp;gt;Do not&amp;lt;/strong&amp;gt; add rel values you find in the wild to this table of rel formats, instead add them to the table in the [[existing-rel-values#POSH_usage|POSH section]].&lt;br /&gt;
* &amp;lt;strong&amp;gt;Do not&amp;lt;/strong&amp;gt; add non-HTML rel values you find to this table of rel formats, instead add them to the table in the [[existing-rel-values#non_HTML_rel_values|non HTML rel values section]].&lt;br /&gt;
* &amp;lt;strong&amp;gt;Do not&amp;lt;/strong&amp;gt; add rel values from obsolete/superceded proposals or drafts, instead add them to the table in the &amp;quot;dropped&amp;quot; section.&lt;br /&gt;
&lt;br /&gt;
Sources:&lt;br /&gt;
* W3C Recommendations: &lt;br /&gt;
** [http://www.w3.org/TR/html401/types.html#h-6.12 HTML 4.01 section 6.12 Link types] (HTML4 Link types)&lt;br /&gt;
** [http://www.w3.org/TR/grddl/ Gleaning Resource Descriptions from Dialects of Languages] (GRDDL)&lt;br /&gt;
* [[microformats]] specifications&lt;br /&gt;
** [[xfn]]&lt;br /&gt;
** [[rel-license]]&lt;br /&gt;
** [[rel-nofollow]]&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! Keyword&lt;br /&gt;
! Effect on &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt;&lt;br /&gt;
! Effect on &amp;lt;code&amp;gt;a&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;area&amp;lt;/code&amp;gt;&lt;br /&gt;
! Brief description &amp;lt;br /&amp;gt;(from the relevant specification where possible)&lt;br /&gt;
! Link to defining specification&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-acquaintance|acquaintance]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the person represented by the current document considers the person represented by the referenced document to be an acquaintance&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-alternate|alternate]]&lt;br /&gt;
| external resource&lt;br /&gt;
| external relation&lt;br /&gt;
| Designates substitute versions for the document in which the link occurs. When used together with the &amp;lt;code&amp;gt;lang&amp;lt;/code&amp;gt; attribute, it implies a translated version of the document. When used together with the &amp;lt;code&amp;gt;media&amp;lt;/code&amp;gt; attribute, it implies a version designed for a different medium (or media). &lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-appendix|appendix]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document serving as an appendix in a collection of documents. &lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-bookmark|bookmark]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a bookmark. A bookmark is a link to a key entry point within an extended document. The &amp;lt;code&amp;gt;title&amp;lt;/code&amp;gt; attribute may be used, for example, to label the bookmark. Note that several bookmarks may be defined in each document. &lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-chapter|chapter]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document serving as a chapter in a collection of documents.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-child|child]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is a child of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-colleague|colleague]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is a colleague of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-contact|contact]] &lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the person represented by the current document considers the person represented by the referenced document to be a contact&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-contents|contents]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document serving as a table of contents. Some user agents also support the synonym ToC (from &amp;quot;Table of Contents&amp;quot;).&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-copyright|copyright]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a copyright statement for the current document.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-co-resident|co-resident]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person lives in the same residence as the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-co-worker|co-worker]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is a co-worker of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-crush|crush]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| this person considers the referenced person to be a crush (i.e. has a crush on the referenced person)&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-date|date]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| this person considers the referenced person to be a date (i.e. is dating the referenced person)&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-friend|friend]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the person represented by the current document considers the person represented by the referenced document to be a friend&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-glossary|glossary]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document providing a list of terms and their definitions that pertain to the current document.||[http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-help|help]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document offering help (more information, links to other sources information, etc.)&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-its-rules|its-rules]]&lt;br /&gt;
| allowed&lt;br /&gt;
| not allowed&lt;br /&gt;
| Refers to a document with external ITS rules.&lt;br /&gt;
| [http://www.w3.org/TR/its20/#selection-global-html5 Internationalization Tag Set (ITS) Version 2.0]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-kin|kin]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is part of the extended family of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-license|license]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| &amp;amp;hellip;indicates that the &amp;lt;nowiki&amp;gt;[referenced document]&amp;lt;/nowiki&amp;gt; is a license for the current page.&lt;br /&gt;
| [[rel-license]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-me|me]]&lt;br /&gt;
| external relation&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced document represents the same person as does the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-met|met]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| this person has met the referenced person&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-muse|muse]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person inspires the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-neighbor|neighbor]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person lives nearby the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-next|next]]&lt;br /&gt;
| external relation&lt;br /&gt;
| external relation&lt;br /&gt;
| Refers to the next document in a linear sequence of documents. User agents may choose to preload the &amp;quot;next&amp;quot; document, to reduce the perceived load time.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-nofollow|nofollow]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| indicates that the destination of that hyperlink {{should-not}} be afforded any additional weight or ranking by user agents which perform link analysis upon web pages (e.g. search engines).&lt;br /&gt;
| [[rel-nofollow]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-parent|parent]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is a parent of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-prev|prev]]&lt;br /&gt;
| external relation&lt;br /&gt;
| external relation&lt;br /&gt;
| Refers to the previous document in an ordered series of documents. Some user agents also support the synonym &amp;quot;Previous&amp;quot;.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-previous|previous]]&lt;br /&gt;
| external relation&lt;br /&gt;
| external relation&lt;br /&gt;
| Synonym of &amp;lt;code&amp;gt;prev&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-section|section]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document serving as a section in a collection of documents.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sibling|sibling]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is a sibling of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-spouse|spouse]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is a spouse of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-start|start]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to the first document in a collection of documents. This link type tells search engines which document is considered by the author to be the starting point of the collection.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-stylesheet|stylesheet]]&lt;br /&gt;
| external resource&lt;br /&gt;
| not allowed&lt;br /&gt;
| a style sheet for the current document&amp;lt;br /&amp;gt; used with the invisible &amp;lt;link href&amp;gt; element which is not ideal for content relationships. Content relationships should be user visible and thus uses with &amp;lt;a href&amp;gt; are strongly preferred. Unfortunately the use of stylesheet in user visible content like &amp;lt;a href&amp;gt; appears to be strictly theoretical.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-subsection|subsection]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document serving as a subsection in a collection of documents.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sweetheart|sweetheart]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| this person considers the referenced person to be their sweetheart&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-tag|tag]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| &amp;amp;hellip;indicates that the &amp;lt;nowiki&amp;gt;[referenced document]&amp;lt;/nowiki&amp;gt; is an author-designated &amp;quot;tag&amp;quot; (or keyword/subject) for the current page.&lt;br /&gt;
| [[rel-tag]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-toc|toc]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Synonym of &amp;lt;code&amp;gt;contents&amp;lt;/code&amp;gt; (from &amp;quot;Table Of Contents&amp;quot;)&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-transformation|transformation]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Relates a source document to a transformation, usually represented in XSLT, that relates the source document syntax to the RDF graph syntax. Used in [[grddl|GRDDL]]&lt;br /&gt;
| [http://www.w3.org/TR/grddl/#transformation GRDDL] &lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== notes ===&lt;br /&gt;
*&amp;lt;code&amp;gt;rel=&amp;quot;alternate&amp;quot;&amp;lt;/code&amp;gt; can take further meaning from additional attributes, such as &lt;br /&gt;
** &amp;lt;code&amp;gt;rel=&amp;quot;alternate&amp;quot; lang=&amp;quot;fr&amp;quot;&amp;lt;/code&amp;gt; (French language version of this page)&lt;br /&gt;
** &amp;lt;code&amp;gt;rel=&amp;quot;alternate&amp;quot; media=&amp;quot;print&amp;quot;&amp;lt;/code&amp;gt; (printable version of this page)&lt;br /&gt;
** &amp;lt;code&amp;gt;rel=&amp;quot;alternate&amp;quot; media=&amp;quot;handheld&amp;quot;&amp;lt;/code&amp;gt; (version of the page intended or better for handheld/portable devices like PDAs, cell phones, etc.)&lt;br /&gt;
&lt;br /&gt;
*Synonyms such as &amp;quot;previous&amp;quot;, &amp;quot;toc&amp;quot; are not as widely supported as the main term.&lt;br /&gt;
&lt;br /&gt;
== proposals ==&lt;br /&gt;
A few rel values have been developed as drafts as a result of going through most of the microformats [[process]], and are thus listed here for your serious consideration. You &amp;lt;strong&amp;gt;may use these values&amp;lt;/strong&amp;gt;, and if you find any problems with them please point them out on the respective &amp;quot;issues&amp;quot; page for the rel value.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! summary !! proposed in !! external spec (if any)&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-pronunciation|pronunciation]] || &amp;amp;hellip;indicates that the destination of the 'link' element is a document providing a pronunciation lexicon for speech-synthesis purposes. || [[rel-pronunciation]]&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-directory|directory]] || &amp;amp;hellip;indicates that the destination of the hyperlink is a directory listing containing an entry for the current page. || [[rel-directory]]&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-enclosure|enclosure]] || &amp;amp;hellip;indicates that the destination of that hyperlink is intended to be downloaded and cached. || [[rel-enclosure]] || [http://www.apps.ietf.org/rfc/rfc4287.html RFC4287]&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-home|home]] || &amp;amp;hellip;indicates that the &amp;lt;nowiki&amp;gt;[referenced document]&amp;lt;/nowiki&amp;gt; is the homepage of the site in which the current page appears. || [[rel-home]]&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-payment|payment]] || &amp;amp;hellip;indicates that the destination of the hyperlink provides a way to show or give support (e.g. financial) for the current page|| [[rel-payment]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== HTML5 link type extensions ==&lt;br /&gt;
&lt;br /&gt;
The following values are registered as link type extensions per the [http://www.whatwg.org/specs/web-apps/current-work/multipage/links.html#other-link-types requirements in the WHATWG HTML spec] and the [http://dev.w3.org/html5/spec/links.html#other-link-types requirements in the W3C HTML5 spec]. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Before you register a new value:&lt;br /&gt;
* '''Please check the [[#formats|Formats table]] and DO NOT re-register''' rel values that are already there. Please note that the W3C HTML WG has made a [http://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html Decision] to drop &amp;lt;code&amp;gt;index&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;up&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;first&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;last&amp;lt;/code&amp;gt; from the HTML5 spec itself.&lt;br /&gt;
* '''Please check the [[#dropped|Dropped table]] and DO NOT register''' values that are already there. If you believe a rel value was dropped from another specification without prejudice, please provide link/cite to explicit text/decision stating as such, e.g. the value was merely postponed, or perhaps expected to be spun-out into its own spec from the group developing that specification.&lt;br /&gt;
&lt;br /&gt;
Note that entries in the [[#formats|Formats table]] and entries that are already in HTML5 as built-in keywords are also considered extensions with the &amp;quot;Ratified&amp;quot; status.&lt;br /&gt;
&lt;br /&gt;
Please make sure that registrations added here have all the required data filled in ''including'':&lt;br /&gt;
* &amp;quot;Effect on link&amp;quot;&lt;br /&gt;
* &amp;quot;Effect on a and area&amp;quot; and &lt;br /&gt;
* a link to a spec that documents the keyword ''as an HTML &amp;lt;code&amp;gt;rel&amp;lt;/code&amp;gt; keyword''. (A spec that merely defines the file format of the link target but does not define the &amp;lt;code&amp;gt;rel&amp;lt;/code&amp;gt; keyword for use in HTML is not the kind of spec that is being required here.)&lt;br /&gt;
&lt;br /&gt;
Entries lacking any of the above required data will likely be removed. &lt;br /&gt;
&lt;br /&gt;
Changes to this registry will not be reflected in validators in real time. But validators will typically get automatically updated with the changes within one week or so&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! Keyword&lt;br /&gt;
! Effect on &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt;&lt;br /&gt;
! Effect on &amp;lt;code&amp;gt;a&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;area&amp;lt;/code&amp;gt;&lt;br /&gt;
! Brief description&lt;br /&gt;
! Link to specification&lt;br /&gt;
! Synonyms&lt;br /&gt;
! Status&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-apple-touch-icon|apple-touch-icon]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specify a Webpage Icon for a “Web Clip”, or “touch icon”, for mobile devices (not limited to Apple devices).&lt;br /&gt;
| [http://developer.apple.com/library/safari/#documentation/appleapplications/reference/safariwebcontent/configuringwebapplications/configuringwebapplications.html Apple's Safari Web Content Guide]&lt;br /&gt;
| probably redundant with rel=icon&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-apple-touch-icon-precomposed|apple-touch-icon-precomposed]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specify a Webpage Icon for a “Web Clip”, or “touch icon”, for mobile devices (not limited to Apple devices).&lt;br /&gt;
| [http://developer.apple.com/library/safari/#documentation/appleapplications/reference/safariwebcontent/configuringwebapplications/configuringwebapplications.html Apple's Safari Web Content Guide]&lt;br /&gt;
| probably redundant with rel=icon&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-apple-touch-startup-image|apple-touch-startup-image]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specify a splashscreen for Web apps on iOS Safari &lt;br /&gt;
| [http://developer.apple.com/library/safari/#documentation/appleapplications/reference/safariwebcontent/configuringwebapplications/configuringwebapplications.html Apple's Safari Web Content Guide]&lt;br /&gt;
| maybe redundant with rel=icon with the sizes attribute?&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-attachment|attachment]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| The resource linked to is &amp;quot;attached&amp;quot; to this document, similar to email attachments. Used in WordPress.&lt;br /&gt;
| No formal specification&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[WPVL_PRETTYPHOTO_REL]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Open lightbox with video&lt;br /&gt;
| No formal specification&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-authorization_endpoint|authorization_endpoint]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specify a hosted authorization server&lt;br /&gt;
| [http://indiewebcamp.com/distributed-indieauth  distributed IndieAuth documentation]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-canonical|canonical]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specifies the canonical URL for the current document in order to help avoid duplicate content.&lt;br /&gt;
| [http://en.wikipedia.org/wiki/Canonical_meta_tag Canonical meta tag] [http://www.Google.com/support/webmasters/bin/answer.py?answer=139066#2 Canonicalization at Google Webmaster Central] [http://www.Bing.com/community/site_blogs/b/webmaster/archive/2009/02/12/partnering-to-help-solve-duplicate-content-issues.aspx Microsoft Webmaster Center] [http://www.YSearchBlog.com/2009/02/12/fighting-duplication-adding-more-arrows-to-your-quiver/ Yahoo! Search Blog]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-category|category]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to a category assigned to the current document or post. Implemented by WordPress for indicating a relation between a blog post and a category.&lt;br /&gt;
| [[rel-category]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-component|component]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specify an HTML document that is treated as a component of this document.&lt;br /&gt;
| [https://dvcs.w3.org/hg/webcomponents/raw-file/tip/spec/components/index.html Web Components]&lt;br /&gt;
| &lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-chrome-webstore-item|chrome-webstore-item]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Link tag to declare for app and extensions inline installations hosted in the Chrome Web Store.&lt;br /&gt;
| [https://developers.google.com/chrome/web-store/docs/inline_installation Using Inline Installation]&lt;br /&gt;
| &lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-disclosure|disclosure]]&lt;br /&gt;
| Not allowed&lt;br /&gt;
| External Resource&lt;br /&gt;
| The 'disclosure' Link Relation Type designates a list of patent disclosures or a particular patent disclosure itself made with respect to material for which such relation type is specified.&lt;br /&gt;
| [http://tools.ietf.org/html/draft-yevstifeyev-disclosure-relation The 'disclosure' Link Relation Type]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-discussion|discussion]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to discussion of the current document or post.&lt;br /&gt;
| [[rel-discussion]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dns-prefetch|dns-prefetch]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Tells the browser to perform dns lookup for host names ahead of use.&lt;br /&gt;
| [https://developer.mozilla.org/En/Controlling_DNS_prefetching Mozilla documentation] [http://dev.chromium.org/developers/design-documents/dns-prefetching Google documentation]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-edit|edit]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Tells the browser where the current page can be edited&lt;br /&gt;
| [http://universaleditbutton.org/Registered_MIME_type#Alternate_Linking_Scheme Universal Edit Button Alternate Linking Scheme].  Implemented in at least [http://mediawiki.org MediaWiki].&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-edituri|EditURI]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A blogging auto discovery value, commonly used by WordPress&lt;br /&gt;
| [http://bitworking.org/projects/atom/draft-gregorio-09.html#Edit AtomAPI]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-enclosure|enclosure]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| External Resource&lt;br /&gt;
| Indicates that the referred resource is intended to be downloaded and cached.&lt;br /&gt;
| [[rel-enclosure]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-entry-content|entry-content]]&lt;br /&gt;
| Not allowed&lt;br /&gt;
| External Resource&lt;br /&gt;
| Indicates that the referenced document is an alternative display source for an Internet Explorer Web Slice.&lt;br /&gt;
| [http://msdn.microsoft.com/en-us/library/cc304073(VS.85).aspx#_alternative Web Slice format specification 0.9]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-external|external]]&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Indicates that the referenced document is not part of the same site as the current document.&lt;br /&gt;
| [[rel-external]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-home|home]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to the top level document for the current document. It can be combined with 'alternate' to indicate a feed for the site of the current page.&lt;br /&gt;
| [[rel-home]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-hub|hub]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to a hub that enables registration for notification of updates to the current page.&lt;br /&gt;
| [http://pubsubhubbub.googlecode.com/svn/trunk/pubsubhubbub-core-0.3.html#discovery PubSubHubbub Spec]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-in-reply-to|in-reply-to]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to an original post that the current page is a comment on or reply to.&lt;br /&gt;
| [[rel-in-reply-to]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-index|index]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to a document providing a list of topics with pointers that pertain to the current document.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-indieauth|indieauth]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| the IndieAuth server for the relying party to contact for IndieAuth authentication&lt;br /&gt;
| [http://spec.indieauth.com/ IndieAuth specification]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-issues|issues]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to issues regarding the current document or specification.&lt;br /&gt;
| [[rel-discussion]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-lightbox|lightbox]]&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Img Pop-Up&lt;br /&gt;
| Images with this attribute are displayed in a larger way than embedded in a website (or how you specified it) when clicked (e.g. with installed &amp;quot;Lightbox 2&amp;quot;-Plugin). When adding [group] to rel=&amp;quot;lightbox&amp;quot; all images get a clickable button for next/prev; insert into &amp;lt;code&amp;gt;&amp;amp;lt;a rel=&amp;quot;lightbox[group]&amp;quot;&amp;gt;&amp;amp;lt;img src=&amp;quot;http:example.com/img.jpg&amp;quot;&amp;gt;&amp;amp;lt;/a&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://lokeshdhakar.com/projects/lightbox2/ Lightbox 2] (needs actual specification to be kept in this list, this link is just documentation of one implementation)&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-manifest|manifest]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Imports or links to a manifest&lt;br /&gt;
| [http://w3c.github.io/manifest/#linking W3C Manifest for web application]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-meta|meta]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| External metadata about the HTML document&lt;br /&gt;
| [http://www.w3.org/TR/2004/REC-rdf-syntax-grammar-20040210/#section-rdf-in-HTML W3C's RDF/XML Syntax Specification]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-indieauth|micropub]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| the micropub endpoint for creating new posts&lt;br /&gt;
| [http://indiewebcamp.com/micropub  Micropub scecification]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-openid.delegate|openid.delegate]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| When the page that contains the link is used as an OpenID indentifier, the relying party perform sOpenID 1.1 authentication with the link target as the identifier instead. &lt;br /&gt;
| [http://openid.net/specs/openid-authentication-1_1.html#delegating_authentication OpenID Authentication 1.1]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-openid.server|openid.server]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| The OpenID server for the relying party to contact for OpenID 1.1 authentication&lt;br /&gt;
| [http://openid.net/specs/openid-authentication-1_1.html#anchor4 OpenID Authentication 1.1]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-openid2.local_id|openid2.local_id]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| When the page that contains the link is used as an OpenID indentifier, the relying party perform sOpenID 2.0 authentication with the link target as the identifier instead. &lt;br /&gt;
| [http://openid.net/specs/openid-authentication-2_0.html#rfc.section.7.3.3 OpenID Authentication 2.0]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-openid2.provider|openid2.provider]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| The OpenID server for the relying party to contact for OpenID 2.0 authentication&lt;br /&gt;
| [http://openid.net/specs/openid-authentication-2_0.html#rfc.section.7.3.3 OpenID Authentication 2.0]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-p3pv1|p3pv1]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| References a machine-readable privacy policy description in the P3P format&lt;br /&gt;
| [http://www.w3.org/TR/P3P/#syntax_link P3P spec]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-pgpkey|pgpkey]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Associates a PGP key with a Web page so that the Web page URL can be used as the commenter's URL in PGP-signed blog comments and the blogging system receiving the comment can fetch the key and verify the signature as belonging to the owner of the URL.&lt;br /&gt;
| [http://golem.ph.utexas.edu/~distler/blog/archives/000320.html PGP-Signed Comments]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-pingback|pingback]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| gives the address of the pingback server that handles pingbacks to the current document&lt;br /&gt;
| [http://www.hixie.ch/specs/pingback/pingback Pingback]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-prerender|prerender]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| External Resource&lt;br /&gt;
| Prerenders the Web page targeted by the link including running it scripts.&lt;br /&gt;
| [[rel-prerender]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-profile|profile]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Contextual External Resource &lt;br /&gt;
| indicate[s] that the destination of that hyperlink is a metadata profile (e.g. an [[XMDP]] profile) for the current page or portion thereof. See also [[xmdp-brainstorming]].&lt;br /&gt;
| [http://microformats.org/wiki/rel-profile rel-profile]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-publisher|publisher]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| External Resource &lt;br /&gt;
| Indicates that the referenced document is a metadata profile (e.g., a social-media/real-name profile such as a Google+ profile) for the publisher of the current page, or some portion of the current page.&lt;br /&gt;
| [https://support.google.com/plus/answer/1713826?hl=en Google help page]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-rendition|rendition]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| External Resource&lt;br /&gt;
| Indicates some example rendering, interpretation, or depiction of the source. User agents may choose to execute, display, or render the target in-place; or navigate to the target.&lt;br /&gt;
| [http://www.globalmentor.com/specs/html-rel-rendition/ HTML rel rendition]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-reply-to|reply-to]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| indicates any mailbox(es) (i.e. email addresses) to which responses are to be sent. ''Note: this is distinct from the 'in-reply-to' value which refers to the originating document, not to the address where comments should be sent.&lt;br /&gt;
| [http://tools.ietf.org/html/rfc2822 RFC2822] (originally [http://tools.ietf.org/html/rfc822#section-4.4.3 RFC822])&lt;br /&gt;
|&lt;br /&gt;
| ratified&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-service|service]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Atom Publishing Protocol editing service autodiscovery.&lt;br /&gt;
| [http://wiki.whatwg.org/wiki/ServiceRelExtension Documentation on the WHATWG wiki]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-shortlink|shortlink]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specifies the preferred shortened URL for the page.&lt;br /&gt;
| [http://code.google.com/p/shortlink/wiki/Specification shortlink spec]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sidebar|sidebar]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Indicates that the referenced document is intended to be shown in a secondary browsing context.&lt;br /&gt;
| [[rel-sidebar]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sitemap|sitemap]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Provides a link to an XML document describing the layout of the site.&lt;br /&gt;
| [[rel-sitemap]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-subresource|subresource]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| An external resource intended for use within the current page.&lt;br /&gt;
| [http://www.chromium.org/spdy/link-headers-and-server-hint/link-rel-subresource Chromium documentation]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-syndication|syndication]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to a page which is a syndicated copy of the current page.&lt;br /&gt;
| [[rel-syndication]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-timesheet|timesheet]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Applies a timesheet to the document.&lt;br /&gt;
| [http://www.w3.org/TR/timesheets/#smilTimesheetsNS-Elements-Timesheet non-normative section in the Timesheet spec]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-token_endpoint|token_endpoint]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specify an HTTP endpoint that micropub clients can use to obtain an access token given an authorization code&lt;br /&gt;
| [http://indiewebcamp.com/token-endpoint token endpoint documentation]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-webmention|webmention]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| gives the address of the webmention endpoint that handles webmentions to the current document&lt;br /&gt;
| [http://webmention.org/ WebMention specification]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-widget|widget]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| External Resource&lt;br /&gt;
| Autodiscovery for W3C widgets&lt;br /&gt;
| [http://dev.w3.org/2006/waf/widgets/Overview.html#linking-to-a-widget-package-from-a-html- non-normative section in the Widget packaging spec]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-wlwmanifest|wlwmanifest]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Windows Live Writer manifest autodiscovery&lt;br /&gt;
| [http://msdn.microsoft.com/en-us/library/bb463263.aspx documentation on MSDN]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-image_src|image_src]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specify a Webpage Icon for use by Facebook, Yahoo, Digg, etc.&lt;br /&gt;
| Unknown, but see for instance [http://www.niallkennedy.com/blog/2009/03/enhanced-social-share.html this]&lt;br /&gt;
| probably redundant with rel=icon&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-cmis-acl|http://docs.oasis-open.org/ns/cmis/link/200908/acl]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| External Resource&lt;br /&gt;
| Identifies the resource containing a CMIS ACL document for the link context&lt;br /&gt;
| [http://docs.oasis-open.org/cmis/CMIS/v1.0/cs01/cmis-spec-v1.0.html#_Toc243905525 CMIS 1.0, Section 3.4.3.4]&lt;br /&gt;
| &lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-stylesheet/less|stylesheet/less]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Less CSS framework stylesheets.&lt;br /&gt;
| [http://lesscss.org/#-client-side-usage Less CSS usage]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== brainstorming ==&lt;br /&gt;
Several rel values are being brainstormed as potential microformats and are thus listed here. If you find you have a use for such semantics in real world examples, &amp;lt;strong&amp;gt;consider trying out&amp;lt;/strong&amp;gt; these values and provide feedback on the respective brainstorming page(s) with your results and experiences.&lt;br /&gt;
&lt;br /&gt;
You may list new proposed rel values here, and even better if you can list and link to POSH uses in the wild.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! summary !! brainstormed in and usage in the wild&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-accessibility|accessibility]] || indicate[s] that the destination of that hyperlink contains accessibility information for the current page. || [http://www.brucelawson.co.uk/2009/rel-accessibility/ blog post] which itself uses the rel value in a &amp;amp;lt;link&amp;amp;gt; tag in the head of the document.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-author|author]] || indicate[s] that the destination of that hyperlink represents the author of the current page. Combines with [[rel-me|rel-me]] to chain authorship information. || Google has said it will index rel-Author in this [http://googlewebmastercentral.blogspot.com/2011/06/authorship-markup-and-web-search.html blog post], with further [http://www.google.com/support/webmasters/bin/answer.py?answer=1229920 discussion of the rel-me connection] See also [http://dev.w3.org/html5/spec/Overview.html#link-type-author the HTML5 spec]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-bibliography|bibliography]] || indicate[s] that the destination of that hyperlink is a bibliography for the current page. || [http://microformats.org/discuss/mail/microformats-discuss/2007-October/010863.html mailing list post, 2007-10-15]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-cite|cite]] || indicate[s] that the destination of that hyperlink is an authoritative source or a precedent to the current page. || [[distributed-conversation-brainstorming]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-group|group]] || the referenced document represents a group to which the person represented by the current document belongs || [[group-brainstorming]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-jslicense|jslicense]]&lt;br /&gt;
| Refers to a document with JavaScript source code and license information (also called a [http://www.gnu.org/licenses/javascript-labels.html JavaScript License Web Labels] page). We might want choose a keyword for this that is more general -- there are many situations besides JavaScript in which it is desirable or required by license agreements (e.g., GNU GPL) to make an offer of both the source code and a copy of a license when distributing object code versions of a given work.&lt;br /&gt;
|* Brainstorming page -- thoughts on the name?&lt;br /&gt;
* Ex. [http://www.eff.org EFF.org] (on &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt;) &lt;br /&gt;
* Ex. [http://www.fsf.org FSF.org] (on &amp;lt;code&amp;gt;a&amp;lt;/code&amp;gt;)&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;span id=&amp;quot;longdesc&amp;quot;&amp;gt;[[rel-longdesc|longdesc]]&amp;lt;/span&amp;gt; || Alternative to the img longdesc attribute, for use on visible links || [http://www.google.com/search?q=rel%3D%22longdesc%22 Google search for rel=longdesc in the wild] shows many sources of proposals. Please edit this to list the earliest and perhaps most recent/comprehensive proposal. No known real world POSH usage in the wild yet.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-map|map]] || Link to a map. Possibly embedded within an adr, hCard, geo or hCalendar. Parsers {{may}} attempt to parse the URL if it is a link to a known map site (e.g. Geohash, Google Maps, Multimap) and extract co-ordinates and other useful data. || (to [[User:TobyInk|TobyInk]] by email)&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-member|member]] || the referenced document represents a member of the group represented by the current document || [[group-brainstorming]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-m_PageScroll2id|m_PageScroll2id]] || JS to scroll to a defined ID || [[group-brainstorming]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-preconnect|preconnect]] || indicates an origin that will be used to fetch required resources. Initiating an early connection, which includes the DNS lookup, TCP handshake, and optional TLS negotiation, allows the user agent to mask the high costs of connection establishment latency.|| [https://igrigorik.github.io/resource-hints/#preconnect resource hints draft]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-prefetch|prefetch]] || indicates the URL and content-type of a resource that is likely to be a required resource when the next action or navigation is triggered. Initiating an early fetch allows the user agent to mask the request latency of the resource and make it available sooner to the application.|| [https://igrigorik.github.io/resource-hints/#prefetch resource hints draft]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-preload|preload]] || indicates the URL and content-type of a resource that should be fetched as early as possible by the user agent. Initiating an early fetch allows the user agent to mask the request latency of the resource and make it available sooner to the application.|| [https://igrigorik.github.io/resource-hints/#preload resource hints draft]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-prerender|prerender]] || indicates the URL of the next navigation target. Initiating a prerender allows the user agent to deliver an instant navigation experience: the user agent downloads the top-level resource and its assets, and performs all of the processing steps required to show the page without actually showing it to the user.|| [https://igrigorik.github.io/resource-hints/#prerender resource hints draft]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-profile|profile]] || indicate[s] that the destination of that hyperlink is a metadata profile (e.g. an [[XMDP]] profile) for the current page or portion thereof || [[xmdp-brainstorming]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-shortlink|shortlink]] || the referenced document represents the current document but with a shorter URL || [http://samj.net/2009/04/introducing-relshort-better-alternative.html blog post]&lt;br /&gt;
|-&lt;br /&gt;
| source || the referenced document represents the source code for the current document or project || [[source-brainstorming]] [http://adactio.com/journal/6667/ blog post]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| vcalendar-parent || link from an event to a containing event || [[User:TobyInk/hcalendar-1.1|hCalendar 1.1 draft]]&lt;br /&gt;
|-&lt;br /&gt;
| vcalendar-child || link from an event to a contained event || [[User:TobyInk/hcalendar-1.1|hCalendar 1.1 draft]]&lt;br /&gt;
|-&lt;br /&gt;
| vcalendar-sibling || link from an event to a related event with the same container || [[User:TobyInk/hcalendar-1.1|hCalendar 1.1 draft]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-status|status]] || the referenced document represents the status (or source of status updates) for the author of this document || [http://monkinetic.com/2009/11/24/status-autodiscovery-relstatus.html blog post]&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== more brainstorming ===&lt;br /&gt;
See also:&lt;br /&gt;
* [[genealogy-brainstorming]] for some thoughts on possible additional values for family relationships (use existing [[XFN]] [[rel-parent|parent]], [[rel-child|child]], [[rel-sibling|sibling]], [[rel-spouse|spouse]], [[rel-kin|kin]] values first though)&lt;br /&gt;
* [[xpn-brainstorming]] for some thoughts on possible additional values for professional relationships (use existing [[XFN]] [[rel-co-worker|co-worker]], [[rel-colleague|colleague]] values first though)&lt;br /&gt;
&lt;br /&gt;
== POSH usage ==&lt;br /&gt;
There are numerous rel values used as [[POSH]], both in the wild, whose origins are not necessarily known, nor are their meanings consistent.  There are also numerous rel values from external proposals of varying degrees of merit.  It is useful to document their existence and summarize their implied meanings/usage intent as research that may be used to perhaps take one or more of them thru the microformats [[process]] if there is both sufficient interest and sufficient in the wild usage.&lt;br /&gt;
&lt;br /&gt;
Note: If a value is missing from this table, it may have either already been promoted by writing it up as a proposal, or demoted by being explicitly dropped. Please check the other tables first before adding to this table.&lt;br /&gt;
&lt;br /&gt;
Note: this list is incomplete, please help complete it from the following sources:&lt;br /&gt;
&lt;br /&gt;
External sources: &lt;br /&gt;
* [http://developer.mozilla.org/about/meta Meta Information in DevMo Docs] (DevMo)&lt;br /&gt;
* [http://wiki.mozilla.org/Microsummaries Microsummary]&lt;br /&gt;
* [http://lachy.id.au/dev/markup/specs/wclr/ Web Communication Link Relationships] (WCLR)&lt;br /&gt;
* [http://www.w3.org/MarkUp/Relationships.html W3C Link Relationship values draft] (LRdraft) - from a draft of the HTML spec circa 1991. &lt;br /&gt;
* [http://www.whatwg.org/specs/web-apps/current-work/multipage/section-links.html#linkTypes HTML5 draft] '''Liable to change'''&lt;br /&gt;
* [http://wiki.foaf-project.org/Autodiscovery FOAF Project Wiki: Autodiscovery] (FOAF)&lt;br /&gt;
* [http://www.apps.ietf.org/rfc/rfc4685.html RFC4685]&lt;br /&gt;
* [http://googlewebmastercentral.blogspot.com/2009/02/specify-your-canonical.html Google Blog]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! summary !! origin !! proposal(s)&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-archive|archive]] || index of archived entries || unknown, perhaps Wordpress open source blogging software || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-archives|archives]] || Provides a link to a collection of records, documents, or other materials of historical interest. ||  || HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|[[rel-author|author]]||see brainstorming above for suggested use by google||unknown || DevMo / HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-canonical|canonical]] || To help search engines disambiguate the same page with multiple representations || Google || [http://googlewebmastercentral.blogspot.com/2009/02/specify-your-canonical.html Google]/[http://www.bing.com/community/blogs/webmaster/archive/2009/02/12/partnering-to-help-solve-duplicate-content-issues.aspx Microsoft]/[http://www.ysearchblog.com/2009/02/12/fighting-duplication-adding-more-arrows-to-your-quiver/ Yahoo!], [http://blog.ask.com/2009/02/ask-is-going-canonical.html Ask Jeeves]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-comment|comment]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-contribution|contribution]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-edituri|EditURI]] &lt;br /&gt;
| Location of the xml-rpc gateway for a Wordpress install that allows external programs to add, edit and delete posts. Used by &amp;quot;[http://codex.wordpress.org/Weblog_Client WordPress blog client]&amp;quot; software for automating posting and updating blog content from your desktop. || Seen in [http://www.wordpress.org/ WordPress], e.g. [http://www.tom-watson.co.uk/].  || Description stubbed in [[rel-edituri]].&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-endorsed|endorsed]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-fan|fan]] || xxxx. || &amp;amp;hellip; || [[hcard-user-profile-authoring]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-feed|feed]] || Gives the address of a syndication feed for the current document. || &amp;amp;hellip; || WCLR/ HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-footnote|footnote]] || Location of the footnote on a link to a footnote. || Markdown preprocessors such as [http://maruku.rubyforge.org/ Maruku] || HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-icon|icon]] || Imports an icon to represent the current document. (Allowed in &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt; only) || [http://dev.w3.org/html5/spec-LC/links.html#rel-icon HTML5] || WCLR/HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-kinetic-stylesheet|kinetic-stylesheet]] || Imports a [http://kssproject.org/ KSS] 'kinetic stylesheet' to bind dynamic behavior to elements || Used in the [http://plone.org Plone] Content Management System || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-lightbox|lightbox]] || Hook - Indicates that following the link will trigger a &amp;quot;lightbox&amp;quot; script (Allowed in &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt; only) || ([http://www.google.co.uk/search?q=rel%3D%22lightbox%22 Google search for rel=lightbox in the wild]) || &amp;amp;hellip; &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-lightbox|lightbox[group_name]]] || Used by lightbox scripts to group different sets of images together.  Images from one group will not appear in another group's lightbox.  See also &amp;quot;lightbox&amp;quot;. || [http://lokeshdhakar.com/projects/lightbox2/#how Lightbox 2] || &amp;amp;hellip; &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-prettyPhoto|prettyPhoto]] || See also &amp;quot;lightbox&amp;quot; || ([http://www.google.fr/search?q=rel%3D%22prettyphoto%22 Google search for rel=&amp;quot;prettyphoto&amp;quot; in the wild]) || &amp;amp;hellip; &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-clearbox|clearbox]] || See also &amp;quot;lightbox&amp;quot; || ([http://www.google.fr/search?q=rel%3D%22clearbox%22 Google search for rel=&amp;quot;clearbox&amp;quot; in the wild]) || &amp;amp;hellip; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-made|made]] || &amp;amp;hellip; || &amp;amp;hellip; || LRdraft&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-meta|meta]] || &amp;amp;hellip; ||  [http://www.w3.org/TR/1999/REC-rdf-syntax-19990222/#transport 1999 W3C RDF syntax REC] || FOAF&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-microsummary|microsummary]]|| &amp;amp;hellip; || &amp;amp;hellip; ||[http://wiki.mozilla.org/Microsummaries Microsummary], be aware of: [[page-summary-formats#Issues_2|microsummary issues]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-noreferrer|noreferrer]] || indicates that no referrer information is to be leaked when following the link. || [http://dev.w3.org/html5/spec-LC/links.html#rel-noreferrer HTML5] || HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-openid-delegate|openid.delegate]] || &amp;amp;hellip; || ([http://www.google.co.uk/search?q=%22rel%3Dopenid%22 Google search for rel=openid.* in the wild]) || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-openid-server|openid.server]] || &amp;amp;hellip; || ([http://www.google.co.uk/search?q=%22rel%3Dopenid%22 Google search for rel=openid.* in the wild]) || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-permalink|permalink]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-pgpkey|pgpkey]] || (see also rel-publickey) || &amp;amp;hellip; || [http://golem.ph.utexas.edu/~distler/blog/archives/000320.html], [http://golem.ph.utexas.edu/~distler/blog/archives/000325.html]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-pingback|pingback]] || Gives the address of the pingback server that handles pingbacks to the current document. (Allowed in &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt; only) || &amp;amp;hellip; || WCLR/ HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-popover|popover]] || Used by a JS widget to display a large, descriptive tooltip. || [http://twitter.github.com/bootstrap Twitter's Bootstrap] [http://twitter.github.com/bootstrap/javascript.html#popovers Popover.js] || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-prefetch|prefetch]] || Specifies that the target resource should be pre-emptively cached. (Allowed in &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt; only) || &amp;amp;hellip; || HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-privacy|privacy]] || Specifies that the target resource is the privacy policy. || &amp;amp;hellip; || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-publickey|publickey]] || (see also rel-pgpkey) || &amp;amp;hellip; || [http://rasterweb.net/raster/2002/12/12/20021212072812/]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-referral|referral]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-related|related]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-replies|replies]] || indicates a continued thread || unknown || [http://www.apps.ietf.org/rfc/rfc4685.html RFC4685]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-resource|resource]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-search|search]] || &amp;amp;hellip; || unknown || unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sitemap|sitemap]] || Links to a site map document. || &amp;amp;hellip; || http://www.sitemaps.org/&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sponsor|sponsor]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-tooltip|tooltip]] || Used by a JS widget to display a tooltip similar (though more customizable) to what is shown by browsers if the 'title' attribute is present. || [http://twitter.github.com/bootstrap Twitter's Bootstrap] [http://twitter.github.com/bootstrap/javascript.html#tooltips Tooltip.js] (and likely other JS tools) || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-trackback|trackback]] || &amp;amp;hellip; || unknown, perhaps open source Movable Type blogging software || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-unendorsed|unendorsed]] || (probably redundant to [[rel-nofollow|nofollow]]) || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-user|user]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-wlwmanifest|wlwmanifest]] || Used by &amp;quot;[http://explore.live.com/windows-live-writer Windows Live Writer],&amp;quot; a Microsoft [http://codex.wordpress.org/Weblog_Client blog client] for automating posting and updating blog content from your desktop. || Seen in [http://www.wordpress.org/ WordPress], e.g. [http://www.tom-watson.co.uk/]. Similar values are probably used by other blog content management systems as well. || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== WCLR ===&lt;br /&gt;
&lt;br /&gt;
The WCLR proposal is described by its author (in e-mail, 2007-09-25) as:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&amp;amp;hellip;now effectively obsolete, since HTML5 and Microformats cover all the worthwhile relationships in that already.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
These are [http://www.whatwg.org/specs/web-apps/current-work/multipage/section-links.html#linkTypes covered by HTML5 already]:&lt;br /&gt;
&lt;br /&gt;
* permalink -&amp;gt; bookmark&lt;br /&gt;
* archive -&amp;gt; archives&lt;br /&gt;
* feed&lt;br /&gt;
* pingback&lt;br /&gt;
* unendorsed -&amp;gt; nofollow&lt;br /&gt;
&lt;br /&gt;
The rest now seem unnecessary.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Nonetheless, there may be some mileage in using them in microformats, at least until HTML5 is widely available.&lt;br /&gt;
&lt;br /&gt;
== Dublin Core ==&lt;br /&gt;
In the past, Dublin Core values have been added to this page in the table about HTML5 features, but no examples, nor an actual specification explicitly stating how the value(s) should be used in HTML could be found. The linked specifications below have been updated so we should start considering Dublin Core values accordingly.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! summary !! source&lt;br /&gt;
|-&lt;br /&gt;
| schema.DC || a specification of all metadata terms maintained by the Dublin Core Metadata Initiative, with regard to the fifteen terms of the Dublin Core Metadata Element Set already published || [http://www.dublincore.org/documents/dcq-html/ Dublin Core]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| schema.DCTERMS || a specification of all metadata terms maintained by the Dublin Core Metadata Initiative, reflecting the changes described more fully in the 2012 document &amp;quot;Maintenance changes to DCMI Metadata Terms&amp;quot; [http://dublincore.org/usage/decisions/2012/dcterms-changes/] || [http://www.dublincore.org/documents/dcq-html/ Dublin Core]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
'''Issues need updating given new information from linked resources.'''&lt;br /&gt;
&lt;br /&gt;
Notes:&lt;br /&gt;
* Dublin Core. This search may help: [http://www.google.co.uk/search?as_q=rel%3Dschema.*&amp;amp;hl=en&amp;amp;num=10&amp;amp;btnG=Google+Search&amp;amp;as_epq=&amp;amp;as_oq=&amp;amp;as_eq=&amp;amp;lr=&amp;amp;as_ft=i&amp;amp;as_filetype=&amp;amp;as_qdr=all&amp;amp;as_occt=any&amp;amp;as_dt=i&amp;amp;as_sitesearch=http%3A%2F%2Fdublincore.org&amp;amp;as_rights=&amp;amp;safe=images]. &lt;br /&gt;
** '''examples from that search only use invisible &amp;lt;code&amp;gt;&amp;amp;lt;link href&amp;amp;gt;&amp;lt;/code&amp;gt; element'''. At first glance it appears the results from the search show only uses with the invisible &amp;lt;code&amp;gt;&amp;amp;lt;link href&amp;amp;gt;&amp;lt;/code&amp;gt; element which is not ideal for content relationships.  Content relationships should be user visible and thus uses with &amp;lt;code&amp;gt;&amp;amp;lt;a href&amp;amp;gt;&amp;lt;/code&amp;gt; are strongly preferred.  &lt;br /&gt;
*** [http://www.ietf.org/rfc/rfc2731.txt RFC2731] defines &amp;lt;code&amp;gt;rel=&amp;quot;schema.AC&amp;quot;&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;rel=&amp;quot;schema.RC&amp;quot;&amp;lt;/code&amp;gt; with the pattern &amp;lt;code&amp;gt;rel=&amp;quot;schema.PREFIX&amp;quot;&amp;lt;/code&amp;gt; as a syntax for defining namespaces for use in meta[@name], *[@rel], *[@rev] and (as per eRDF) *[@class] attributes. A link to a Dublin Core metadata schema is generally not suitable for end users, so &amp;lt;code&amp;gt;&amp;amp;lt;link href&amp;amp;gt;&amp;lt;/code&amp;gt; appears to be more appropriate than &amp;lt;code&amp;gt;&amp;amp;lt;a href&amp;amp;gt;&amp;lt;/code&amp;gt; for those that use Dublin Core metadata schemas.&lt;br /&gt;
*** The scheme proposed above provides metadata namespace declarations. As described by DCMI specifications, such indications '''cannot''' be provided w/o a suitable namespace. In order to give complete pieces of information, the correct description set must be: &amp;lt;code&amp;gt;&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot;&amp;amp;gt;&amp;lt;/code&amp;gt; (for the namespace declaration, followed by) &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.&amp;lt;nowiki&amp;gt;[element]&amp;lt;/nowiki&amp;gt;&amp;quot; content=&amp;quot;&amp;lt;nowiki&amp;gt;[element.value]&amp;lt;/nowiki&amp;gt;&amp;quot;&amp;amp;gt;&amp;lt;/code&amp;gt; for related elements. &lt;br /&gt;
**** Note: [http://purl.org/dc/terms/ schema.DCTERMS] is conventionally related to an upgraded elements list than [http://purl.org/dc/elements/1.1/ schema.DC] and should be preferred as rel values. Both are discussed here for subject completeness) &lt;br /&gt;
** '''proposal to use in content currently only theoretical'''. Thus unfortunately the use of Dublin Core in user visible content like &amp;lt;code&amp;gt;&amp;amp;lt;a href&amp;amp;gt;&amp;lt;/code&amp;gt; appears to be strictly theoretical. See [http://microformats.org/discuss/mail/microformats-discuss/2008-January/011445.html microformats-discuss/2008-January/011445.html] for a proposal to use Dublin Core in user visible content.&lt;br /&gt;
*** '''recent improvements'''. DCMI solves some trouble concerning metadata through the ''description set model''. Some of these informations cannot currently be provided in any standard ways other than DC, namely dates, validity and periodicity. Following this public bug report ([https://www.w3.org/Bugs/Public/show_bug.cgi?format=multiple&amp;amp;id=22520]), the correct namespace declaration for DC and DCTERMS metadata are now considered valid HTML code. We '''must''' encourage this practice both for internal usefulness and for shared practices. &lt;br /&gt;
&lt;br /&gt;
* The Dublin Core document [http://dublincore.org/documents/dc-html/ &amp;quot;Expressing Dublin Core metadata using HTML/XHTML meta and link elements&amp;quot;] is a specification for, and gives examples of, both &amp;lt;link rel=&amp;quot;schema.DC&amp;quot; href=&amp;quot;http://purl.org/dc/elements/1.1/&amp;quot;&amp;gt; and &amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot;&amp;gt;. Note that Dublin Core encourages the use of DCTERMS elements over DC. A list of projects which use Dublin Core metadata is maintained [http://dublincore.org/projects/ here].&lt;br /&gt;
* [http://dublincore.org/documents/dc-html/ &amp;quot;Expressing Dublin Core metadata using HTML/XHTML meta and link elements&amp;quot;] also includes examples of &amp;lt;link rel=&amp;quot;DCTERMS.[element]&amp;quot; href=&amp;quot;&amp;quot;&amp;gt;, where [element] = subject, isReferencedBy, creator, and publisher. The &amp;lt;link&amp;gt; tag is used instead of the &amp;lt;meta&amp;gt; tag whenever the content is a URL. (Note that this use is different from, but related to, &amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;quot;&amp;gt;.) Potentially, ''any'' of the 55 DCTERMS elements could be used in this way, and this could include use in HTML 5.&lt;br /&gt;
** As said before, HTML5 validators now allow the use of &amp;lt;code&amp;gt;&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot;&amp;amp;gt;&amp;lt;/code&amp;gt; for namespace declarations.&lt;br /&gt;
&lt;br /&gt;
== Use with HTTP Link Header ==&lt;br /&gt;
You can also use any of the rel values (that are allowed for link elements) with HTTP Link Headers, &lt;br /&gt;
&lt;br /&gt;
Example: returning a Javascript file with a license (since JS itself has no way to indicate a license)&lt;br /&gt;
&amp;lt;source lang=text&amp;gt;&lt;br /&gt;
Link: &amp;lt;http://creativecommons.org/publicdomain/zero/1.0/&amp;gt;; rel=&amp;quot;license&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For multiple licenses (e.g. CC-SA and GPL), simply use multiple &amp;lt;code&amp;gt;Link:&amp;lt;/code&amp;gt; headers.&lt;br /&gt;
&amp;lt;source lang=text&amp;gt;&lt;br /&gt;
Link: &amp;lt;http://creativecommons.org/licenses/by-sa/3.0/&amp;gt;; rel=&amp;quot;license&amp;quot;&lt;br /&gt;
Link: &amp;lt;http://www.gnu.org/licenses/gpl.html&amp;gt;; rel=&amp;quot;license&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Example: similarly, linking to a copyright statement for an image:&lt;br /&gt;
&amp;lt;source lang=text&amp;gt;&lt;br /&gt;
Link: &amp;lt;http://example.org/copyright.html&amp;gt;; rel=&amp;quot;copyright&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
or providing a brief inline copyright statement:&lt;br /&gt;
&amp;lt;source lang=text&amp;gt;&lt;br /&gt;
Link: &amp;lt;data:text/plain;charset=utf-8,Copyright 2013 ExampleCo, All Rights Reserved.&amp;gt;; rel=&amp;quot;copyright&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== unspecified ==&lt;br /&gt;
Some rel values have been added to this page perhaps in one of the tables above, but no examples, nor an actual specification explicitly stating that the value(s) should be used in the HTML 'rel' attribute could be found. They are listed here in the hopes someone can discover more specific/precise URLs to examples or specifications about them (preferably both).  Until such precise URLs to examples/specs are provided, the values can be treated as they are purely theoretical and thus of little interest.&lt;br /&gt;
&lt;br /&gt;
A simple list here is sufficient.&lt;br /&gt;
&lt;br /&gt;
== non HTML rel values ==&lt;br /&gt;
There are markup languages other than HTML that also have a rel attribute, often based upon the HTML rel attribute.&lt;br /&gt;
It is useful to document some of these other languages and their rel values for both reference purposes, and to provide  background research for the possible development and re-use of these values in HTML, as [[poshformats]] or [[microformats]]&lt;br /&gt;
&lt;br /&gt;
Sources:&lt;br /&gt;
* [[Atom]] [[RFC4287]] specification. &lt;br /&gt;
* See http://www.iana.org/assignments/link-relations.html for more.&lt;br /&gt;
* See [http://amundsen.com/media-types/maze/format/#link-relations Maze+XML]&lt;br /&gt;
* See [http://amundsen.com/media-types/collection/format/#link-relations Collection+JSON]&lt;br /&gt;
* See [http://www.opensearch.org/Specifications/OpenSearch/1.1#Url_rel_values OpenSearch]&lt;br /&gt;
* See [http://tools.ietf.org/html/rfc6861 The Create-Form and Edit-Form Link Relations (RFC6861)]&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! summary&amp;lt;br /&amp;gt;(from the relevant specification where possible)) !! defining specification&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| self&lt;br /&gt;
| From http://www.ietf.org/rfc/rfc4287.txt : &amp;lt;blockquote&amp;gt;The value &amp;quot;self&amp;quot; signifies that the IRI in the value of the href attribute identifies a resource equivalent to the containing element.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
| [[Atom]] http://www.ietf.org/rfc/rfc4287.txt&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| http://gdata.youtube.com/schemas/2007#in-reply-to || See http://code.google.com/apis/youtube/2.0/developers_guide_protocol_comments.html || YouTube extension to Atom&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| collection || Refers to a resource which represents a collection of which the current resource is a member.&lt;br /&gt;
&lt;br /&gt;
When used in the Maze+XML media type, the associated URI returns the available collection of mazes.&lt;br /&gt;
  || Maze+XML, Collection+JSON, OpenSearch&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| east || Refers to a resource to the &amp;quot;east&amp;quot; of the current resource.&lt;br /&gt;
&lt;br /&gt;
When used in the Maze+XML media type, the associated URI points to a neighboring cell resource to the east in the active maze.&lt;br /&gt;
&lt;br /&gt;
 || Maze+XML&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| exit || Refers to a resource that represents the exit or end of the current client actvity or process.&lt;br /&gt;
&lt;br /&gt;
When used in the Maze+XML media type, the associated URI points to the final exit resource of the active maze.&lt;br /&gt;
&lt;br /&gt;
 || Maze+XML&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| north || Refers to a resource that is &amp;quot;north&amp;quot; of the current resource.&lt;br /&gt;
&lt;br /&gt;
When used in the Maze+XML media type, the associated URI points to a neighboring cell resource to the north in the active maze.&lt;br /&gt;
&lt;br /&gt;
 || Maze+XML&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| south || Refers to a resource that is &amp;quot;south&amp;quot; of the current resource.&lt;br /&gt;
&lt;br /&gt;
When used in the Maze+XML media type, the associated URI points to a neighboring cell resource to the south in the active maze.&lt;br /&gt;
&lt;br /&gt;
 || Maze+XML&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-via|via]] || Identifies a resource that is the source of the information in the context. ||  Atom 1.0 Syndication format (RFC 4287)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| west || Refers to a resource that is &amp;quot;west&amp;quot; of the current resource.&lt;br /&gt;
&lt;br /&gt;
When used in the Maze+XML media type, the associated URI points to a neighboring cell resource to the west in the active maze.&lt;br /&gt;
&lt;br /&gt;
 || Maze+XML&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| item || The target IRI points to a resource that is a member of a collection represented by the context IRI. || Collection+JSON&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| create-form || When included in a resource, the &amp;quot;create-form&amp;quot; link relation MAY identify a target resource that represents the form to append a new member to the link context. || See [http://tools.ietf.org/html/rfc6861 The Create-Form and Edit-Form Link Relations (RFC6861)]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| edit-form || When included in a resource, the &amp;quot;edit-form&amp;quot; link relation identifies a target resource that represents the form for editing associated resource. || See [http://tools.ietf.org/html/rfc6861 The Create-Form and Edit-Form Link Relations (RFC6861)]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| lightframe || Opens the target in a lightbox. On inclusion it provides a simple target the lightframe and loads the content in a lightbox effect || Lightbox&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| superbox[image] || jQuery Superbox! is a script which allows you display windows with the lightbox effect. || superbox&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| wp-video-lightbox || wp-video-lightbox! is a rel to anchor tag script display videos with the lightbox effect. || wp-video-lightbox&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| youtube || Opens the target youtube video in using the Swipebox Plugin || Swipebox&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| shadowbox || shadowbox is a jQuery script for images displaying with the &amp;quot;lightbox&amp;quot; effects. || shadowbox&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| permission || When included in a resource, the &amp;quot;permission&amp;quot; link relation MAY identify a target resource that represents the list of entities that can access or modify the resource in the link context. || See [http://cdoc.io/spec.html#permission-link-relation Collection Document Media Type Specification]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| version-history&lt;br /&gt;
| When included on a versioned resource, this link points to a resource containing the version history for this resource.&lt;br /&gt;
| [http://tools.ietf.org/html/rfc5829 RFC 5829]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| latest-version&lt;br /&gt;
| When included on a versioned resource, this link points to a resource containing the latest (e.g., current) version.&lt;br /&gt;
| [http://tools.ietf.org/html/rfc5829 RFC 5829]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| working-copy&lt;br /&gt;
| When included on a versioned resource, this link points to a working copy for this resource.&lt;br /&gt;
| [http://tools.ietf.org/html/rfc5829 RFC 5829]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| working-copy-of&lt;br /&gt;
| When included on a working copy, this link points to the versioned resource from which this working copy was obtained.&lt;br /&gt;
| [http://tools.ietf.org/html/rfc5829 RFC 5829]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| predecessor-version&lt;br /&gt;
| When included on a versioned resource, this link points to a resource containing the predecessor version in the version history.&lt;br /&gt;
| [http://tools.ietf.org/html/rfc5829 RFC 5829]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| successor-version&lt;br /&gt;
| When included on a versioned resource, this link points to a resource containing the successor version in the version history.&lt;br /&gt;
| [http://tools.ietf.org/html/rfc5829 RFC 5829]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| ... || ... || ...&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== dropped ==&lt;br /&gt;
The following rel values were in earlier version(s) of specification(s) and it is presumed by their absence from the most recent version of the respective specification(s) that they have been deprecated or obsoleted. &lt;br /&gt;
&lt;br /&gt;
In general, you {{should not}} use any dropped values.&lt;br /&gt;
&lt;br /&gt;
If any such values have been superceded by standard values (see the first table on this page), then you {{must not}} use the dropped versions.&lt;br /&gt;
&lt;br /&gt;
In particular:&lt;br /&gt;
* if a rel value was in a draft and is missing (without explanation) from the final spec, or&lt;br /&gt;
* if a rel value was in a previous version of and is missing (without explanation) from an update to the specification (even a draft update)&lt;br /&gt;
&lt;br /&gt;
Then absent any other information or explanation, it is presumed that the group/editors working on that specification decided to explicitly drop it (either in development, or in the updated version) and thus it should be obsoleted (not re-registered). &lt;br /&gt;
&lt;br /&gt;
If you wish to add them, please research &amp;lt;em&amp;gt;why&amp;lt;/em&amp;gt; such values were omitted from latter specifications before doing so. If you do discover the reasoning, please add a short statement or link to thereof into the appropriate place in the following table.&lt;br /&gt;
&lt;br /&gt;
If there is more data, e.g. a link to an email of discussion of the spec development that explains ''why'' the rel value was dropped, and it explicitly states, e.g. it was without prejudice, or merely post-poned, or perhaps expected to be spun-out into its spec (or some other explicit positive reason), then it makes to link/cite that explicit text as part of a proposal.&lt;br /&gt;
&lt;br /&gt;
Sources: &lt;br /&gt;
* [http://www.w3.org/MarkUp/html3/ HTML3] (HTML3) / has been superceded by [http://www.w3.org/MarkUp/Wilbur/ HTML 3.2] - which itself has been superceded by [http://www.w3.org/TR/REC-html40 HTML 4.0] - which itself has been updated by [http://w3.org/TR/html401 HTML 4.01], commonly referred to as &amp;quot;HTML 4&amp;quot; in this wiki and other places.)&lt;br /&gt;
* [http://www.w3.org/TR/relations.html Proposed HTML 4.0 link types] (HTML4dropped) - obsoleted/superceded by the HTML 4.0 Recommendation.  Any values that were in the &amp;quot;Proposed HTML 4.0 link types&amp;quot; document but didn't make it into the HTML 4.0 Recommendation were thus explicitly dropped and should be avoided.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! summary !! defining specification !! why dropped &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|[[rel-banner|banner]]||Was used to reference another document to be used as banner for this document (i.e. a form of &amp;quot;include&amp;quot; statement).|| HTML3 ||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-begin|begin]] || identifies the author-defined start of a sequence of documents of which the current document is a node.&lt;br /&gt;
 || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-biblioentry|biblioentry]] || identifies a bibliographic entry || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-bibliography|bibliography]] || identifies a bibliography || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-child|child]] (obsolete/superceded) || the target document is a hierarchical child, or subdocument, of the current document|| HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-citation|citation]] || the target is a bibliographic citation || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-collection|collection]] || the target document is an collection that contains the current document || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-definition|definition]] || identifies a definition of a term || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-disclaimer|disclaimer]] || identifies a hypertext link to a legal disclaimer || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-editor|editor]] || identifies a hypertext link to an editor || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-end|end]] || identifies the author-defined end of a sequence of documents of which the current document is a node. || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-footnote|footnote]] || the anchor is a footnote marker and the target is a footnote || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-navigate|navigate]] || the target document contains information such as a image map that will help users to gain a sense of how and where to found information || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-origin|origin]] || synonym for &amp;lt;code&amp;gt;top&amp;lt;/code&amp;gt; || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-parent|parent]] (obsolete/superceded) || the target document is the hierarchical parent, or container, of the current document|| HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-pointer|pointer]] || the target is a pointer to the real target. This value can be used by a user agent to perform a pre-fetch of the specified target for evaluation until the real target is reached || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-publisher|publisher]] || identifies a hypertext link to a publisher || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sibling|sibling]] (obsolete/superceded) || the target document is a child of a common parent, or a hierarchical peer of the current document|| HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-top|top]] || the target document is the logical top node of the tree (see also &amp;lt;code&amp;gt;begin&amp;lt;/code&amp;gt;) || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-trademark|trademark]] || identifies a hypertext link to a trademark notice || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-translation|translation]] || the target is a translation to another language || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-urc|urc]] || identifies a Universal Resource Citation || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== dropped without prejudice ==&lt;br /&gt;
In one known instance (from HTML4 to HTML5), some rel values were in an earlier version of a specification (or a proposal) and were dropped from a latter (draft) version, and it was noted that these values were dropped with the intent that they could still be proposed in a registry and thus they explicitly were not deprecated or obsoleted. This section documents such values as separate from the [[#dropped|dropped]] section.&lt;br /&gt;
&lt;br /&gt;
In general, you {{should not}} use any dropped values.&lt;br /&gt;
&lt;br /&gt;
If any such values have been superceded by standard values (see the first table on this page), then you {{must not}} use the dropped versions.&lt;br /&gt;
&lt;br /&gt;
Rel values that were dropped without prejudice from a specification will be considered similar to new values that have never been specified.&lt;br /&gt;
&lt;br /&gt;
If you know of additional rel values that were dropped without prejudice from an update to a specification, please cite a URL and quote from the group developing the specification that officially states from that group that the dropping of the values was done without prejudice, or equivalent statement (such as explicit allowance of external registration, proposal, and/or development).&lt;br /&gt;
&lt;br /&gt;
This table serves a historical purpose. If you wish to propose a value from this table, please copy it and leave it in place.&lt;br /&gt;
&lt;br /&gt;
Sources: &lt;br /&gt;
* Several rel values were [http://www.w3.org/Bugs/Public/show_bug.cgi?id=7475#c15 explicitly dropped from HTML5]. Per: [http://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html Issue 118 Decision] ('''emphasis''' added): &amp;lt;blockquote&amp;gt;&amp;lt;p&amp;gt;&amp;quot;The final proposal argues for the removal of some relation values, to wit, it suggests removal of '''index, up, first and last'''. It was pointed out in survey comments that these relations are already registered in the IANA link relation registry. Presumably, '''these relations could also be entered in whatever other registry or registries HTML5 adopts for this purpose'''.&amp;lt;/p&amp;gt;...&amp;lt;p&amp;gt;&amp;quot;Next Steps&amp;lt;/p&amp;gt;...&amp;lt;p&amp;gt;&amp;quot;Since the relations to be removed are already registered at the IANA link relation registry, no further action is needed to include them there. WG members are '''free to register or record these relations elsehwere''' [sic], as well.&amp;quot;&amp;lt;/p&amp;gt;&amp;lt;/blockquote&amp;gt; &lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value&lt;br /&gt;
! summary&lt;br /&gt;
! defining specification&lt;br /&gt;
! why dropped &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-first|first]]&lt;br /&gt;
| synonym for &amp;lt;code&amp;gt;begin&amp;lt;/code&amp;gt;&lt;br /&gt;
| HTML4dropped - never in an official spec&lt;br /&gt;
| [http://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html Explicitly dropped from HTML5 interim draft yet permitted for external registry]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-index|index]]&lt;br /&gt;
| Refers to a document providing an index for the current document.&lt;br /&gt;
| was in [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4]&lt;br /&gt;
| [http://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html Explicitly dropped from HTML5 interim draft yet permitted for external registry]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-last|last]]&lt;br /&gt;
| synonym for &amp;lt;code&amp;gt;end&amp;lt;/code&amp;gt;&lt;br /&gt;
| HTML4dropped - never in an official spec&lt;br /&gt;
| [http://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html Explicitly dropped from HTML5 interim draft yet permitted for external registry]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-up|up]]&lt;br /&gt;
|When the document forms part of a hierarchy, this link references the immediate parent of the current document.&lt;br /&gt;
| was in [http://www.w3.org/MarkUp/html3/dochead.html HTML3] - but [http://www.w3.org/TR/html401/types.html#type-links dropped in HTML4]&lt;br /&gt;
| [http://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html Explicitly dropped from HTML5 interim draft yet permitted for external registry]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
See related [http://dev.w3.org/html5/spec/links.html#linkTypes HTML5: Link types] for existing HTML5 specified rel values.&lt;br /&gt;
&lt;br /&gt;
== rejected ==&lt;br /&gt;
Some rel values have been proposed and rejected.  They are listed here to make that explicit.  Authors {{must not}} use rejected rel values.&lt;br /&gt;
&lt;br /&gt;
Source: [[rejected-formats]].&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! origin / proposal !! why rejected &lt;br /&gt;
|-&lt;br /&gt;
| [[rel-logo|logo]]&lt;br /&gt;
| [http://relogo.org Relogo.org]&lt;br /&gt;
| [[rejected-formats#Logo]]&lt;br /&gt;
|-&lt;br /&gt;
|[[rel-pavatar|pavatar]] || [http://pavatar.com/ pavatar] || [[rejected-formats#Pavatar]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== tools ==&lt;br /&gt;
See [[implementations]].&lt;br /&gt;
&lt;br /&gt;
== addtional external research ==&lt;br /&gt;
Here are some additional historical references to the development or rel-values which may be useful when researching values, especially why specific values may have been proposed but abandoned.&lt;br /&gt;
* 1996-06-07 [http://www.w3.org/MarkUp/draft-ietf-html-relrev-00.txt Hypertext links in HTML] (copies: [http://ftp.ics.uci.edu/pub/ietf/html/draft-ietf-html-relrev-00.txt ftp.ics.uci.edu])&lt;br /&gt;
* 1996-11-13 [http://www.w3.org/Architecture/NOTE-link Describing and Linking Web Resources] &lt;br /&gt;
* 1997-01-23 [http://lists.gnu.org/archive/html/lynx-dev/1997-01/msg00537.html LYNX-DEV Lynx and the LINK tag] &lt;br /&gt;
* 1997-01-24 [http://lists.w3.org/Archives/Public/w3c-sgml-wg/1997Jan/0357.html Taxonomy list] &lt;br /&gt;
* 1997-03-28 [http://www.w3.org/TR/WD-htmllink-970328 W3C Working Draft: Hypertext Links and Meta Information in HTML]&lt;br /&gt;
 &lt;br /&gt;
=== previous attempts at documenting ===&lt;br /&gt;
There have been previous attempts at documenting known rel values, most of which fell out of date due to being dependent on a single author maintaining them. They're listed here purely for historical reasons, and are not sufficient to be references of their own (since they're just individual curations of other references)&lt;br /&gt;
* [http://fantasai.tripod.com/qref/Appendix/LinkTypes/ltdef.html Link Type Definitions Glossary] by fantasai&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== related ==&lt;br /&gt;
{{rel-related-pages}}&lt;br /&gt;
* [[elemental-microformats]]&lt;br /&gt;
* [[existing-rev-values]]&lt;br /&gt;
* [[existing-class-names]]&lt;br /&gt;
&lt;br /&gt;
== copyright ==&lt;br /&gt;
&lt;br /&gt;
{{cc-pd-license}}&lt;/div&gt;</summary>
		<author><name>Andy sky</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=existing-rel-values&amp;diff=64849</id>
		<title>existing-rel-values</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=existing-rel-values&amp;diff=64849"/>
		<updated>2015-03-11T15:52:05Z</updated>

		<summary type="html">&lt;p&gt;Andy sky: /* HTML5 link type extensions */ Dublin Core nonliteral-type resource references&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt; existing rel values &amp;lt;/entry-title&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This page contains tables of known HTML rel values from specifications, formats, proposals, brainstorms, and non-trivial [[POSH]] usage in the wild.  In addition, dropped and rejected values are listed at the end for comprehensiveness.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;usage&amp;quot;&amp;gt;usage&amp;lt;/span&amp;gt;: see [[rel-faq#How_is_rel_used|how is 'rel' used]].  Regarding &amp;lt;span id=&amp;quot;rev&amp;quot;&amp;gt;rev&amp;lt;/span&amp;gt;, see: [[rel-faq#Should_rev_even_be_used|should 'rev' even be used]].&lt;br /&gt;
&lt;br /&gt;
This page is also the official rel registry ([http://www.whatwg.org/specs/web-apps/current-work/multipage/links.html#other-link-types][http://www.w3.org/TR/html5/links.html#other-link-types]). Add new and proposed rel values to the following section:&lt;br /&gt;
* [[existing-rel-values#HTML5_link_type_extensions|HTML5 link type extension]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== formats ==&lt;br /&gt;
These rel values are defined formats from specifications (HTML 4, microformats) are thus are &amp;lt;strong&amp;gt;recommended for general use&amp;lt;/strong&amp;gt;.  Alphabetically ordered by value.&lt;br /&gt;
&lt;br /&gt;
Note:&lt;br /&gt;
* &amp;lt;strong&amp;gt;Do not&amp;lt;/strong&amp;gt; add proposed rel values for HTML5 here, add them to the [[#HTML5_link_type_extensions|HTML5 link type extensions]] table.&lt;br /&gt;
* &amp;lt;strong&amp;gt;Do not&amp;lt;/strong&amp;gt; add rel values you find in the wild to this table of rel formats, instead add them to the table in the [[existing-rel-values#POSH_usage|POSH section]].&lt;br /&gt;
* &amp;lt;strong&amp;gt;Do not&amp;lt;/strong&amp;gt; add non-HTML rel values you find to this table of rel formats, instead add them to the table in the [[existing-rel-values#non_HTML_rel_values|non HTML rel values section]].&lt;br /&gt;
* &amp;lt;strong&amp;gt;Do not&amp;lt;/strong&amp;gt; add rel values from obsolete/superceded proposals or drafts, instead add them to the table in the &amp;quot;dropped&amp;quot; section.&lt;br /&gt;
&lt;br /&gt;
Sources:&lt;br /&gt;
* W3C Recommendations: &lt;br /&gt;
** [http://www.w3.org/TR/html401/types.html#h-6.12 HTML 4.01 section 6.12 Link types] (HTML4 Link types)&lt;br /&gt;
** [http://www.w3.org/TR/grddl/ Gleaning Resource Descriptions from Dialects of Languages] (GRDDL)&lt;br /&gt;
* [[microformats]] specifications&lt;br /&gt;
** [[xfn]]&lt;br /&gt;
** [[rel-license]]&lt;br /&gt;
** [[rel-nofollow]]&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! Keyword&lt;br /&gt;
! Effect on &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt;&lt;br /&gt;
! Effect on &amp;lt;code&amp;gt;a&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;area&amp;lt;/code&amp;gt;&lt;br /&gt;
! Brief description &amp;lt;br /&amp;gt;(from the relevant specification where possible)&lt;br /&gt;
! Link to defining specification&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-acquaintance|acquaintance]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the person represented by the current document considers the person represented by the referenced document to be an acquaintance&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-alternate|alternate]]&lt;br /&gt;
| external resource&lt;br /&gt;
| external relation&lt;br /&gt;
| Designates substitute versions for the document in which the link occurs. When used together with the &amp;lt;code&amp;gt;lang&amp;lt;/code&amp;gt; attribute, it implies a translated version of the document. When used together with the &amp;lt;code&amp;gt;media&amp;lt;/code&amp;gt; attribute, it implies a version designed for a different medium (or media). &lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-appendix|appendix]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document serving as an appendix in a collection of documents. &lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-bookmark|bookmark]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a bookmark. A bookmark is a link to a key entry point within an extended document. The &amp;lt;code&amp;gt;title&amp;lt;/code&amp;gt; attribute may be used, for example, to label the bookmark. Note that several bookmarks may be defined in each document. &lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-chapter|chapter]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document serving as a chapter in a collection of documents.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-child|child]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is a child of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-colleague|colleague]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is a colleague of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-contact|contact]] &lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the person represented by the current document considers the person represented by the referenced document to be a contact&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-contents|contents]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document serving as a table of contents. Some user agents also support the synonym ToC (from &amp;quot;Table of Contents&amp;quot;).&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-copyright|copyright]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a copyright statement for the current document.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-co-resident|co-resident]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person lives in the same residence as the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-co-worker|co-worker]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is a co-worker of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-crush|crush]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| this person considers the referenced person to be a crush (i.e. has a crush on the referenced person)&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-date|date]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| this person considers the referenced person to be a date (i.e. is dating the referenced person)&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-friend|friend]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the person represented by the current document considers the person represented by the referenced document to be a friend&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-glossary|glossary]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document providing a list of terms and their definitions that pertain to the current document.||[http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-help|help]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document offering help (more information, links to other sources information, etc.)&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-its-rules|its-rules]]&lt;br /&gt;
| allowed&lt;br /&gt;
| not allowed&lt;br /&gt;
| Refers to a document with external ITS rules.&lt;br /&gt;
| [http://www.w3.org/TR/its20/#selection-global-html5 Internationalization Tag Set (ITS) Version 2.0]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-kin|kin]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is part of the extended family of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-license|license]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| &amp;amp;hellip;indicates that the &amp;lt;nowiki&amp;gt;[referenced document]&amp;lt;/nowiki&amp;gt; is a license for the current page.&lt;br /&gt;
| [[rel-license]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-me|me]]&lt;br /&gt;
| external relation&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced document represents the same person as does the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-met|met]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| this person has met the referenced person&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-muse|muse]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person inspires the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-neighbor|neighbor]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person lives nearby the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-next|next]]&lt;br /&gt;
| external relation&lt;br /&gt;
| external relation&lt;br /&gt;
| Refers to the next document in a linear sequence of documents. User agents may choose to preload the &amp;quot;next&amp;quot; document, to reduce the perceived load time.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-nofollow|nofollow]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| indicates that the destination of that hyperlink {{should-not}} be afforded any additional weight or ranking by user agents which perform link analysis upon web pages (e.g. search engines).&lt;br /&gt;
| [[rel-nofollow]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-parent|parent]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is a parent of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-prev|prev]]&lt;br /&gt;
| external relation&lt;br /&gt;
| external relation&lt;br /&gt;
| Refers to the previous document in an ordered series of documents. Some user agents also support the synonym &amp;quot;Previous&amp;quot;.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-previous|previous]]&lt;br /&gt;
| external relation&lt;br /&gt;
| external relation&lt;br /&gt;
| Synonym of &amp;lt;code&amp;gt;prev&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-section|section]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document serving as a section in a collection of documents.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sibling|sibling]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is a sibling of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-spouse|spouse]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is a spouse of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-start|start]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to the first document in a collection of documents. This link type tells search engines which document is considered by the author to be the starting point of the collection.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-stylesheet|stylesheet]]&lt;br /&gt;
| external resource&lt;br /&gt;
| not allowed&lt;br /&gt;
| a style sheet for the current document&amp;lt;br /&amp;gt; used with the invisible &amp;lt;link href&amp;gt; element which is not ideal for content relationships. Content relationships should be user visible and thus uses with &amp;lt;a href&amp;gt; are strongly preferred. Unfortunately the use of stylesheet in user visible content like &amp;lt;a href&amp;gt; appears to be strictly theoretical.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-subsection|subsection]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document serving as a subsection in a collection of documents.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sweetheart|sweetheart]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| this person considers the referenced person to be their sweetheart&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-tag|tag]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| &amp;amp;hellip;indicates that the &amp;lt;nowiki&amp;gt;[referenced document]&amp;lt;/nowiki&amp;gt; is an author-designated &amp;quot;tag&amp;quot; (or keyword/subject) for the current page.&lt;br /&gt;
| [[rel-tag]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-toc|toc]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Synonym of &amp;lt;code&amp;gt;contents&amp;lt;/code&amp;gt; (from &amp;quot;Table Of Contents&amp;quot;)&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-transformation|transformation]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Relates a source document to a transformation, usually represented in XSLT, that relates the source document syntax to the RDF graph syntax. Used in [[grddl|GRDDL]]&lt;br /&gt;
| [http://www.w3.org/TR/grddl/#transformation GRDDL] &lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== notes ===&lt;br /&gt;
*&amp;lt;code&amp;gt;rel=&amp;quot;alternate&amp;quot;&amp;lt;/code&amp;gt; can take further meaning from additional attributes, such as &lt;br /&gt;
** &amp;lt;code&amp;gt;rel=&amp;quot;alternate&amp;quot; lang=&amp;quot;fr&amp;quot;&amp;lt;/code&amp;gt; (French language version of this page)&lt;br /&gt;
** &amp;lt;code&amp;gt;rel=&amp;quot;alternate&amp;quot; media=&amp;quot;print&amp;quot;&amp;lt;/code&amp;gt; (printable version of this page)&lt;br /&gt;
** &amp;lt;code&amp;gt;rel=&amp;quot;alternate&amp;quot; media=&amp;quot;handheld&amp;quot;&amp;lt;/code&amp;gt; (version of the page intended or better for handheld/portable devices like PDAs, cell phones, etc.)&lt;br /&gt;
&lt;br /&gt;
*Synonyms such as &amp;quot;previous&amp;quot;, &amp;quot;toc&amp;quot; are not as widely supported as the main term.&lt;br /&gt;
&lt;br /&gt;
== proposals ==&lt;br /&gt;
A few rel values have been developed as drafts as a result of going through most of the microformats [[process]], and are thus listed here for your serious consideration. You &amp;lt;strong&amp;gt;may use these values&amp;lt;/strong&amp;gt;, and if you find any problems with them please point them out on the respective &amp;quot;issues&amp;quot; page for the rel value.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! summary !! proposed in !! external spec (if any)&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-pronunciation|pronunciation]] || &amp;amp;hellip;indicates that the destination of the 'link' element is a document providing a pronunciation lexicon for speech-synthesis purposes. || [[rel-pronunciation]]&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-directory|directory]] || &amp;amp;hellip;indicates that the destination of the hyperlink is a directory listing containing an entry for the current page. || [[rel-directory]]&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-enclosure|enclosure]] || &amp;amp;hellip;indicates that the destination of that hyperlink is intended to be downloaded and cached. || [[rel-enclosure]] || [http://www.apps.ietf.org/rfc/rfc4287.html RFC4287]&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-home|home]] || &amp;amp;hellip;indicates that the &amp;lt;nowiki&amp;gt;[referenced document]&amp;lt;/nowiki&amp;gt; is the homepage of the site in which the current page appears. || [[rel-home]]&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-payment|payment]] || &amp;amp;hellip;indicates that the destination of the hyperlink provides a way to show or give support (e.g. financial) for the current page|| [[rel-payment]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== HTML5 link type extensions ==&lt;br /&gt;
&lt;br /&gt;
The following values are registered as link type extensions per the [http://www.whatwg.org/specs/web-apps/current-work/multipage/links.html#other-link-types requirements in the WHATWG HTML spec] and the [http://dev.w3.org/html5/spec/links.html#other-link-types requirements in the W3C HTML5 spec]. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Before you register a new value:&lt;br /&gt;
* '''Please check the [[#formats|Formats table]] and DO NOT re-register''' rel values that are already there. Please note that the W3C HTML WG has made a [http://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html Decision] to drop &amp;lt;code&amp;gt;index&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;up&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;first&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;last&amp;lt;/code&amp;gt; from the HTML5 spec itself.&lt;br /&gt;
* '''Please check the [[#dropped|Dropped table]] and DO NOT register''' values that are already there. If you believe a rel value was dropped from another specification without prejudice, please provide link/cite to explicit text/decision stating as such, e.g. the value was merely postponed, or perhaps expected to be spun-out into its own spec from the group developing that specification.&lt;br /&gt;
&lt;br /&gt;
Note that entries in the [[#formats|Formats table]] and entries that are already in HTML5 as built-in keywords are also considered extensions with the &amp;quot;Ratified&amp;quot; status.&lt;br /&gt;
&lt;br /&gt;
Please make sure that registrations added here have all the required data filled in ''including'':&lt;br /&gt;
* &amp;quot;Effect on link&amp;quot;&lt;br /&gt;
* &amp;quot;Effect on a and area&amp;quot; and &lt;br /&gt;
* a link to a spec that documents the keyword ''as an HTML &amp;lt;code&amp;gt;rel&amp;lt;/code&amp;gt; keyword''. (A spec that merely defines the file format of the link target but does not define the &amp;lt;code&amp;gt;rel&amp;lt;/code&amp;gt; keyword for use in HTML is not the kind of spec that is being required here.)&lt;br /&gt;
&lt;br /&gt;
Entries lacking any of the above required data will likely be removed. &lt;br /&gt;
&lt;br /&gt;
Changes to this registry will not be reflected in validators in real time. But validators will typically get automatically updated with the changes within one week or so&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! Keyword&lt;br /&gt;
! Effect on &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt;&lt;br /&gt;
! Effect on &amp;lt;code&amp;gt;a&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;area&amp;lt;/code&amp;gt;&lt;br /&gt;
! Brief description&lt;br /&gt;
! Link to specification&lt;br /&gt;
! Synonyms&lt;br /&gt;
! Status&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-apple-touch-icon|apple-touch-icon]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specify a Webpage Icon for a “Web Clip”, or “touch icon”, for mobile devices (not limited to Apple devices).&lt;br /&gt;
| [http://developer.apple.com/library/safari/#documentation/appleapplications/reference/safariwebcontent/configuringwebapplications/configuringwebapplications.html Apple's Safari Web Content Guide]&lt;br /&gt;
| probably redundant with rel=icon&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-apple-touch-icon-precomposed|apple-touch-icon-precomposed]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specify a Webpage Icon for a “Web Clip”, or “touch icon”, for mobile devices (not limited to Apple devices).&lt;br /&gt;
| [http://developer.apple.com/library/safari/#documentation/appleapplications/reference/safariwebcontent/configuringwebapplications/configuringwebapplications.html Apple's Safari Web Content Guide]&lt;br /&gt;
| probably redundant with rel=icon&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-apple-touch-startup-image|apple-touch-startup-image]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specify a splashscreen for Web apps on iOS Safari &lt;br /&gt;
| [http://developer.apple.com/library/safari/#documentation/appleapplications/reference/safariwebcontent/configuringwebapplications/configuringwebapplications.html Apple's Safari Web Content Guide]&lt;br /&gt;
| maybe redundant with rel=icon with the sizes attribute?&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-attachment|attachment]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| The resource linked to is &amp;quot;attached&amp;quot; to this document, similar to email attachments. Used in WordPress.&lt;br /&gt;
| No formal specification&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[WPVL_PRETTYPHOTO_REL]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Open lightbox with video&lt;br /&gt;
| No formal specification&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-authorization_endpoint|authorization_endpoint]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specify a hosted authorization server&lt;br /&gt;
| [http://indiewebcamp.com/distributed-indieauth  distributed IndieAuth documentation]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-canonical|canonical]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specifies the canonical URL for the current document in order to help avoid duplicate content.&lt;br /&gt;
| [http://en.wikipedia.org/wiki/Canonical_meta_tag Canonical meta tag] [http://www.Google.com/support/webmasters/bin/answer.py?answer=139066#2 Canonicalization at Google Webmaster Central] [http://www.Bing.com/community/site_blogs/b/webmaster/archive/2009/02/12/partnering-to-help-solve-duplicate-content-issues.aspx Microsoft Webmaster Center] [http://www.YSearchBlog.com/2009/02/12/fighting-duplication-adding-more-arrows-to-your-quiver/ Yahoo! Search Blog]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-category|category]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to a category assigned to the current document or post. Implemented by WordPress for indicating a relation between a blog post and a category.&lt;br /&gt;
| [[rel-category]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-component|component]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specify an HTML document that is treated as a component of this document.&lt;br /&gt;
| [https://dvcs.w3.org/hg/webcomponents/raw-file/tip/spec/components/index.html Web Components]&lt;br /&gt;
| &lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-chrome-webstore-item|chrome-webstore-item]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Link tag to declare for app and extensions inline installations hosted in the Chrome Web Store.&lt;br /&gt;
| [https://developers.google.com/chrome/web-store/docs/inline_installation Using Inline Installation]&lt;br /&gt;
| &lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel_dcterms.(property)#conformsTo|DCTERMS.conformsTo]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| An established standard to which the described resource conforms. &lt;br /&gt;
&amp;lt;ref name=title group=dublincore&amp;gt;A ''plain (literal) value string'' may be associated to the resource as the value of the title attribute link element&amp;lt;/ref&amp;gt;&lt;br /&gt;
&amp;lt;ref name=namespace group=dublincore&amp;gt;Requires Dublin Core namespace declaration: &amp;lt;code&amp;gt;'''&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot; /&amp;gt;'''&amp;lt;/code&amp;gt;&amp;lt;/ref&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
| It may be replaced by the literal value in form of &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.conformsTo&amp;quot; content=&amp;quot;...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel_dcterms.(property)#contributor|DCTERMS.contributor]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| An entity responsible for making contributions to the resource. Examples include a person, an organization, or a service.&lt;br /&gt;
&amp;lt;ref name=title group=dublincore /&amp;gt;&lt;br /&gt;
&amp;lt;ref name=namespace group=dublincore /&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
| It may be replaced by the literal value in form of &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.contributor&amp;quot; content=&amp;quot;...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel_dcterms.(property)#creator|DCTERMS.creator]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| An entity primarily responsible for making the resource. Examples include a person, an organization, or a service.&lt;br /&gt;
&amp;lt;ref name=title group=dublincore /&amp;gt;&lt;br /&gt;
&amp;lt;ref name=namespace group=dublincore /&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
| It may be replaced by the literal value in form of &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.creator&amp;quot; content=&amp;quot;...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel_dcterms.(property)#description|DCTERMS.description]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| An account of the resource. Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource. &lt;br /&gt;
&amp;lt;ref name=title group=dublincore /&amp;gt;&lt;br /&gt;
&amp;lt;ref name=namespace group=dublincore /&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
| It may be replaced by the literal value in form of &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.description&amp;quot; content=&amp;quot;...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel_dcterms.(property)#hasFormat|DCTERMS.hasFormat]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that is substantially the same as the pre-existing described resource, but in another format. &lt;br /&gt;
&amp;lt;ref name=title group=dublincore /&amp;gt;&lt;br /&gt;
&amp;lt;ref name=namespace group=dublincore /&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel_dcterms.(property)#hasPart|DCTERMS.hasPart]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that is included either physically or logically in the described resource. &lt;br /&gt;
&amp;lt;ref name=title group=dublincore /&amp;gt;&lt;br /&gt;
&amp;lt;ref name=namespace group=dublincore /&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel_dcterms.(property)#hasVersion|DCTERMS.hasVersion]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that is a version, edition, or adaptation of the described resource. &lt;br /&gt;
&amp;lt;ref name=title group=dublincore /&amp;gt;&lt;br /&gt;
&amp;lt;ref name=namespace group=dublincore /&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel_dcterms.(property)#identifier|DCTERMS.identifier]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| An unambiguous reference to the resource within a given context. &lt;br /&gt;
&amp;lt;ref name=title group=dublincore /&amp;gt;&lt;br /&gt;
&amp;lt;ref name=namespace group=dublincore /&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
| It may be replaced by the literal value in form of &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.identifier&amp;quot; content=&amp;quot;...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel_dcterms.(property)#isFormatOf|DCTERMS.isFormatOf]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that is substantially the same as the described resource, but in another format. &lt;br /&gt;
&amp;lt;ref name=title group=dublincore /&amp;gt;&lt;br /&gt;
&amp;lt;ref name=namespace group=dublincore /&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel_dcterms.(property)#isPartOf|DCTERMS.isPartOf]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource in which the described resource is physically or logically included. &lt;br /&gt;
&amp;lt;ref name=title group=dublincore /&amp;gt;&lt;br /&gt;
&amp;lt;ref name=namespace group=dublincore /&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel_dcterms.(property)#isReferencedBy|DCTERMS.isReferencedBy]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that references, cites, or otherwise points to the described resource.&lt;br /&gt;
&amp;lt;ref name=title group=dublincore /&amp;gt;&lt;br /&gt;
&amp;lt;ref name=namespace group=dublincore /&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel_dcterms.(property)#isReplacedBy|DCTERMS.isReplacedBy]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that supplants, displaces, or supersedes the described resource.&lt;br /&gt;
&amp;lt;ref name=title group=dublincore /&amp;gt;&lt;br /&gt;
&amp;lt;ref name=namespace group=dublincore /&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel_dcterms.(property)#isRequiredBy|DCTERMS.isRequiredBy]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that requires the described resource to support its function, delivery, or coherence.&lt;br /&gt;
&amp;lt;ref name=title group=dublincore /&amp;gt;&lt;br /&gt;
&amp;lt;ref name=namespace group=dublincore /&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel_dcterms.(property)#isVersionOf|DCTERMS.isVersionOf]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource of which the described resource is a version, edition, or adaptation.	&amp;lt;br /&amp;gt;Changes in version imply substantive changes in content rather than differences in format.&lt;br /&gt;
&amp;lt;ref name=title group=dublincore /&amp;gt;&lt;br /&gt;
&amp;lt;ref name=namespace group=dublincore /&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel_dcterms.(property)#license|DCTERMS.license]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A legal document giving official permission to do something with the resource.&lt;br /&gt;
&amp;lt;ref name=title group=dublincore /&amp;gt;&lt;br /&gt;
&amp;lt;ref name=namespace group=dublincore /&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
| It may be replaced by the literal value in form of &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.license&amp;quot; content=&amp;quot;...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel_dcterms.(property)#mediator|DCTERMS.mediator]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| An entity that mediates access to the resource and for whom the resource is intended or useful. In an educational context, a mediator might be a parent, teacher, teaching assistant, or care-giver.&lt;br /&gt;
&amp;lt;ref name=title group=dublincore /&amp;gt;&lt;br /&gt;
&amp;lt;ref name=namespace group=dublincore /&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
| It may be replaced by the literal value in form of &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.mediator&amp;quot; content=&amp;quot;...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel_dcterms.(property)#publisher|DCTERMS.publisher]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| An entity responsible for making the resource available. Examples include a person, an organization, or a service.&lt;br /&gt;
&amp;lt;ref name=title group=dublincore /&amp;gt;&lt;br /&gt;
&amp;lt;ref name=namespace group=dublincore /&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
| It may be replaced by the literal value in form of &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.publisher&amp;quot; content=&amp;quot;...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel_dcterms.(property)#references|DCTERMS.references]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that is referenced, cited, or otherwise pointed to by the described resource.&lt;br /&gt;
&amp;lt;ref name=title group=dublincore /&amp;gt;&lt;br /&gt;
&amp;lt;ref name=namespace group=dublincore /&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel_dcterms.(property)#relation|DCTERMS.relation]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource.&lt;br /&gt;
&amp;lt;ref name=title group=dublincore /&amp;gt;&lt;br /&gt;
&amp;lt;ref name=namespace group=dublincore /&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel_dcterms.(property)#replaces|DCTERMS.replaces]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that is supplanted, displaced, or superseded by the described resource.&lt;br /&gt;
&amp;lt;ref name=title group=dublincore /&amp;gt;&lt;br /&gt;
&amp;lt;ref name=namespace group=dublincore /&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel_dcterms.(property)#requires|DCTERMS.requires]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource that is required by the described resource to support its function, delivery, or coherence.&lt;br /&gt;
&amp;lt;ref name=title group=dublincore /&amp;gt;&lt;br /&gt;
&amp;lt;ref name=namespace group=dublincore /&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel_dcterms.(property)#rightsHolder|DCTERMS.rightsHolder]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A person or organization owning or managing rights over the resource.&lt;br /&gt;
&amp;lt;ref name=title group=dublincore /&amp;gt;&lt;br /&gt;
&amp;lt;ref name=namespace group=dublincore /&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
| It may be replaced by the literal value in form of &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.rightsHolder&amp;quot; content=&amp;quot;...&amp;quot; /&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel_dcterms.(property)#source|DCTERMS.source]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A related resource from which the described resource is derived.&lt;br /&gt;
&amp;lt;ref name=title group=dublincore /&amp;gt;&lt;br /&gt;
&amp;lt;ref name=namespace group=dublincore /&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel_dcterms.(property)#subject|DCTERMS.subject]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| The topic of the resource.&lt;br /&gt;
&amp;lt;ref name=title group=dublincore /&amp;gt;&lt;br /&gt;
&amp;lt;ref name=namespace group=dublincore /&amp;gt;&lt;br /&gt;
| [http://dublincore.org/documents/dcmi-terms/ DCMI Metadata Terms]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-disclosure|disclosure]]&lt;br /&gt;
| Not allowed&lt;br /&gt;
| External Resource&lt;br /&gt;
| The 'disclosure' Link Relation Type designates a list of patent disclosures or a particular patent disclosure itself made with respect to material for which such relation type is specified.&lt;br /&gt;
| [http://tools.ietf.org/html/draft-yevstifeyev-disclosure-relation The 'disclosure' Link Relation Type]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-discussion|discussion]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to discussion of the current document or post.&lt;br /&gt;
| [[rel-discussion]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dns-prefetch|dns-prefetch]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Tells the browser to perform dns lookup for host names ahead of use.&lt;br /&gt;
| [https://developer.mozilla.org/En/Controlling_DNS_prefetching Mozilla documentation] [http://dev.chromium.org/developers/design-documents/dns-prefetching Google documentation]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-edit|edit]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Tells the browser where the current page can be edited&lt;br /&gt;
| [http://universaleditbutton.org/Registered_MIME_type#Alternate_Linking_Scheme Universal Edit Button Alternate Linking Scheme].  Implemented in at least [http://mediawiki.org MediaWiki].&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-edituri|EditURI]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A blogging auto discovery value, commonly used by WordPress&lt;br /&gt;
| [http://bitworking.org/projects/atom/draft-gregorio-09.html#Edit AtomAPI]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-enclosure|enclosure]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| External Resource&lt;br /&gt;
| Indicates that the referred resource is intended to be downloaded and cached.&lt;br /&gt;
| [[rel-enclosure]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-entry-content|entry-content]]&lt;br /&gt;
| Not allowed&lt;br /&gt;
| External Resource&lt;br /&gt;
| Indicates that the referenced document is an alternative display source for an Internet Explorer Web Slice.&lt;br /&gt;
| [http://msdn.microsoft.com/en-us/library/cc304073(VS.85).aspx#_alternative Web Slice format specification 0.9]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-external|external]]&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Indicates that the referenced document is not part of the same site as the current document.&lt;br /&gt;
| [[rel-external]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-home|home]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to the top level document for the current document. It can be combined with 'alternate' to indicate a feed for the site of the current page.&lt;br /&gt;
| [[rel-home]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-hub|hub]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to a hub that enables registration for notification of updates to the current page.&lt;br /&gt;
| [http://pubsubhubbub.googlecode.com/svn/trunk/pubsubhubbub-core-0.3.html#discovery PubSubHubbub Spec]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-in-reply-to|in-reply-to]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to an original post that the current page is a comment on or reply to.&lt;br /&gt;
| [[rel-in-reply-to]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-index|index]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to a document providing a list of topics with pointers that pertain to the current document.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-indieauth|indieauth]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| the IndieAuth server for the relying party to contact for IndieAuth authentication&lt;br /&gt;
| [http://spec.indieauth.com/ IndieAuth specification]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-issues|issues]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to issues regarding the current document or specification.&lt;br /&gt;
| [[rel-discussion]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-lightbox|lightbox]]&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Img Pop-Up&lt;br /&gt;
| Images with this attribute are displayed in a larger way than embedded in a website (or how you specified it) when clicked (e.g. with installed &amp;quot;Lightbox 2&amp;quot;-Plugin). When adding [group] to rel=&amp;quot;lightbox&amp;quot; all images get a clickable button for next/prev; insert into &amp;lt;code&amp;gt;&amp;amp;lt;a rel=&amp;quot;lightbox[group]&amp;quot;&amp;gt;&amp;amp;lt;img src=&amp;quot;http:example.com/img.jpg&amp;quot;&amp;gt;&amp;amp;lt;/a&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://lokeshdhakar.com/projects/lightbox2/ Lightbox 2] (needs actual specification to be kept in this list, this link is just documentation of one implementation)&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-manifest|manifest]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Imports or links to a manifest&lt;br /&gt;
| [http://w3c.github.io/manifest/#linking W3C Manifest for web application]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-meta|meta]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| External metadata about the HTML document&lt;br /&gt;
| [http://www.w3.org/TR/2004/REC-rdf-syntax-grammar-20040210/#section-rdf-in-HTML W3C's RDF/XML Syntax Specification]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-indieauth|micropub]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| the micropub endpoint for creating new posts&lt;br /&gt;
| [http://indiewebcamp.com/micropub  Micropub scecification]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-openid.delegate|openid.delegate]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| When the page that contains the link is used as an OpenID indentifier, the relying party perform sOpenID 1.1 authentication with the link target as the identifier instead. &lt;br /&gt;
| [http://openid.net/specs/openid-authentication-1_1.html#delegating_authentication OpenID Authentication 1.1]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-openid.server|openid.server]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| The OpenID server for the relying party to contact for OpenID 1.1 authentication&lt;br /&gt;
| [http://openid.net/specs/openid-authentication-1_1.html#anchor4 OpenID Authentication 1.1]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-openid2.local_id|openid2.local_id]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| When the page that contains the link is used as an OpenID indentifier, the relying party perform sOpenID 2.0 authentication with the link target as the identifier instead. &lt;br /&gt;
| [http://openid.net/specs/openid-authentication-2_0.html#rfc.section.7.3.3 OpenID Authentication 2.0]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-openid2.provider|openid2.provider]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| The OpenID server for the relying party to contact for OpenID 2.0 authentication&lt;br /&gt;
| [http://openid.net/specs/openid-authentication-2_0.html#rfc.section.7.3.3 OpenID Authentication 2.0]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-p3pv1|p3pv1]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| References a machine-readable privacy policy description in the P3P format&lt;br /&gt;
| [http://www.w3.org/TR/P3P/#syntax_link P3P spec]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-pgpkey|pgpkey]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Associates a PGP key with a Web page so that the Web page URL can be used as the commenter's URL in PGP-signed blog comments and the blogging system receiving the comment can fetch the key and verify the signature as belonging to the owner of the URL.&lt;br /&gt;
| [http://golem.ph.utexas.edu/~distler/blog/archives/000320.html PGP-Signed Comments]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-pingback|pingback]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| gives the address of the pingback server that handles pingbacks to the current document&lt;br /&gt;
| [http://www.hixie.ch/specs/pingback/pingback Pingback]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-prerender|prerender]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| External Resource&lt;br /&gt;
| Prerenders the Web page targeted by the link including running it scripts.&lt;br /&gt;
| [[rel-prerender]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-profile|profile]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Contextual External Resource &lt;br /&gt;
| indicate[s] that the destination of that hyperlink is a metadata profile (e.g. an [[XMDP]] profile) for the current page or portion thereof. See also [[xmdp-brainstorming]].&lt;br /&gt;
| [http://microformats.org/wiki/rel-profile rel-profile]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-publisher|publisher]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| External Resource &lt;br /&gt;
| Indicates that the referenced document is a metadata profile (e.g., a social-media/real-name profile such as a Google+ profile) for the publisher of the current page, or some portion of the current page.&lt;br /&gt;
| [https://support.google.com/plus/answer/1713826?hl=en Google help page]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-rendition|rendition]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| External Resource&lt;br /&gt;
| Indicates some example rendering, interpretation, or depiction of the source. User agents may choose to execute, display, or render the target in-place; or navigate to the target.&lt;br /&gt;
| [http://www.globalmentor.com/specs/html-rel-rendition/ HTML rel rendition]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-reply-to|reply-to]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| indicates any mailbox(es) (i.e. email addresses) to which responses are to be sent. ''Note: this is distinct from the 'in-reply-to' value which refers to the originating document, not to the address where comments should be sent.&lt;br /&gt;
| [http://tools.ietf.org/html/rfc2822 RFC2822] (originally [http://tools.ietf.org/html/rfc822#section-4.4.3 RFC822])&lt;br /&gt;
|&lt;br /&gt;
| ratified&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-service|service]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Atom Publishing Protocol editing service autodiscovery.&lt;br /&gt;
| [http://wiki.whatwg.org/wiki/ServiceRelExtension Documentation on the WHATWG wiki]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-shortlink|shortlink]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specifies the preferred shortened URL for the page.&lt;br /&gt;
| [http://code.google.com/p/shortlink/wiki/Specification shortlink spec]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sidebar|sidebar]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Indicates that the referenced document is intended to be shown in a secondary browsing context.&lt;br /&gt;
| [[rel-sidebar]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sitemap|sitemap]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Provides a link to an XML document describing the layout of the site.&lt;br /&gt;
| [[rel-sitemap]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-subresource|subresource]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| An external resource intended for use within the current page.&lt;br /&gt;
| [http://www.chromium.org/spdy/link-headers-and-server-hint/link-rel-subresource Chromium documentation]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-syndication|syndication]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to a page which is a syndicated copy of the current page.&lt;br /&gt;
| [[rel-syndication]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-timesheet|timesheet]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Applies a timesheet to the document.&lt;br /&gt;
| [http://www.w3.org/TR/timesheets/#smilTimesheetsNS-Elements-Timesheet non-normative section in the Timesheet spec]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-token_endpoint|token_endpoint]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specify an HTTP endpoint that micropub clients can use to obtain an access token given an authorization code&lt;br /&gt;
| [http://indiewebcamp.com/token-endpoint token endpoint documentation]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-webmention|webmention]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| gives the address of the webmention endpoint that handles webmentions to the current document&lt;br /&gt;
| [http://webmention.org/ WebMention specification]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-widget|widget]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| External Resource&lt;br /&gt;
| Autodiscovery for W3C widgets&lt;br /&gt;
| [http://dev.w3.org/2006/waf/widgets/Overview.html#linking-to-a-widget-package-from-a-html- non-normative section in the Widget packaging spec]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-wlwmanifest|wlwmanifest]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Windows Live Writer manifest autodiscovery&lt;br /&gt;
| [http://msdn.microsoft.com/en-us/library/bb463263.aspx documentation on MSDN]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-image_src|image_src]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specify a Webpage Icon for use by Facebook, Yahoo, Digg, etc.&lt;br /&gt;
| Unknown, but see for instance [http://www.niallkennedy.com/blog/2009/03/enhanced-social-share.html this]&lt;br /&gt;
| probably redundant with rel=icon&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-cmis-acl|http://docs.oasis-open.org/ns/cmis/link/200908/acl]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| External Resource&lt;br /&gt;
| Identifies the resource containing a CMIS ACL document for the link context&lt;br /&gt;
| [http://docs.oasis-open.org/cmis/CMIS/v1.0/cs01/cmis-spec-v1.0.html#_Toc243905525 CMIS 1.0, Section 3.4.3.4]&lt;br /&gt;
| &lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-stylesheet/less|stylesheet/less]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Less CSS framework stylesheets.&lt;br /&gt;
| [http://lesscss.org/#-client-side-usage Less CSS usage]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== brainstorming ==&lt;br /&gt;
Several rel values are being brainstormed as potential microformats and are thus listed here. If you find you have a use for such semantics in real world examples, &amp;lt;strong&amp;gt;consider trying out&amp;lt;/strong&amp;gt; these values and provide feedback on the respective brainstorming page(s) with your results and experiences.&lt;br /&gt;
&lt;br /&gt;
You may list new proposed rel values here, and even better if you can list and link to POSH uses in the wild.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! summary !! brainstormed in and usage in the wild&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-accessibility|accessibility]] || indicate[s] that the destination of that hyperlink contains accessibility information for the current page. || [http://www.brucelawson.co.uk/2009/rel-accessibility/ blog post] which itself uses the rel value in a &amp;amp;lt;link&amp;amp;gt; tag in the head of the document.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-author|author]] || indicate[s] that the destination of that hyperlink represents the author of the current page. Combines with [[rel-me|rel-me]] to chain authorship information. || Google has said it will index rel-Author in this [http://googlewebmastercentral.blogspot.com/2011/06/authorship-markup-and-web-search.html blog post], with further [http://www.google.com/support/webmasters/bin/answer.py?answer=1229920 discussion of the rel-me connection] See also [http://dev.w3.org/html5/spec/Overview.html#link-type-author the HTML5 spec]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-bibliography|bibliography]] || indicate[s] that the destination of that hyperlink is a bibliography for the current page. || [http://microformats.org/discuss/mail/microformats-discuss/2007-October/010863.html mailing list post, 2007-10-15]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-cite|cite]] || indicate[s] that the destination of that hyperlink is an authoritative source or a precedent to the current page. || [[distributed-conversation-brainstorming]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-group|group]] || the referenced document represents a group to which the person represented by the current document belongs || [[group-brainstorming]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-jslicense|jslicense]]&lt;br /&gt;
| Refers to a document with JavaScript source code and license information (also called a [http://www.gnu.org/licenses/javascript-labels.html JavaScript License Web Labels] page). We might want choose a keyword for this that is more general -- there are many situations besides JavaScript in which it is desirable or required by license agreements (e.g., GNU GPL) to make an offer of both the source code and a copy of a license when distributing object code versions of a given work.&lt;br /&gt;
|* Brainstorming page -- thoughts on the name?&lt;br /&gt;
* Ex. [http://www.eff.org EFF.org] (on &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt;) &lt;br /&gt;
* Ex. [http://www.fsf.org FSF.org] (on &amp;lt;code&amp;gt;a&amp;lt;/code&amp;gt;)&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;span id=&amp;quot;longdesc&amp;quot;&amp;gt;[[rel-longdesc|longdesc]]&amp;lt;/span&amp;gt; || Alternative to the img longdesc attribute, for use on visible links || [http://www.google.com/search?q=rel%3D%22longdesc%22 Google search for rel=longdesc in the wild] shows many sources of proposals. Please edit this to list the earliest and perhaps most recent/comprehensive proposal. No known real world POSH usage in the wild yet.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-map|map]] || Link to a map. Possibly embedded within an adr, hCard, geo or hCalendar. Parsers {{may}} attempt to parse the URL if it is a link to a known map site (e.g. Geohash, Google Maps, Multimap) and extract co-ordinates and other useful data. || (to [[User:TobyInk|TobyInk]] by email)&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-member|member]] || the referenced document represents a member of the group represented by the current document || [[group-brainstorming]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-m_PageScroll2id|m_PageScroll2id]] || JS to scroll to a defined ID || [[group-brainstorming]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-preconnect|preconnect]] || indicates an origin that will be used to fetch required resources. Initiating an early connection, which includes the DNS lookup, TCP handshake, and optional TLS negotiation, allows the user agent to mask the high costs of connection establishment latency.|| [https://igrigorik.github.io/resource-hints/#preconnect resource hints draft]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-prefetch|prefetch]] || indicates the URL and content-type of a resource that is likely to be a required resource when the next action or navigation is triggered. Initiating an early fetch allows the user agent to mask the request latency of the resource and make it available sooner to the application.|| [https://igrigorik.github.io/resource-hints/#prefetch resource hints draft]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-preload|preload]] || indicates the URL and content-type of a resource that should be fetched as early as possible by the user agent. Initiating an early fetch allows the user agent to mask the request latency of the resource and make it available sooner to the application.|| [https://igrigorik.github.io/resource-hints/#preload resource hints draft]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-prerender|prerender]] || indicates the URL of the next navigation target. Initiating a prerender allows the user agent to deliver an instant navigation experience: the user agent downloads the top-level resource and its assets, and performs all of the processing steps required to show the page without actually showing it to the user.|| [https://igrigorik.github.io/resource-hints/#prerender resource hints draft]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-profile|profile]] || indicate[s] that the destination of that hyperlink is a metadata profile (e.g. an [[XMDP]] profile) for the current page or portion thereof || [[xmdp-brainstorming]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-shortlink|shortlink]] || the referenced document represents the current document but with a shorter URL || [http://samj.net/2009/04/introducing-relshort-better-alternative.html blog post]&lt;br /&gt;
|-&lt;br /&gt;
| source || the referenced document represents the source code for the current document or project || [[source-brainstorming]] [http://adactio.com/journal/6667/ blog post]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| vcalendar-parent || link from an event to a containing event || [[User:TobyInk/hcalendar-1.1|hCalendar 1.1 draft]]&lt;br /&gt;
|-&lt;br /&gt;
| vcalendar-child || link from an event to a contained event || [[User:TobyInk/hcalendar-1.1|hCalendar 1.1 draft]]&lt;br /&gt;
|-&lt;br /&gt;
| vcalendar-sibling || link from an event to a related event with the same container || [[User:TobyInk/hcalendar-1.1|hCalendar 1.1 draft]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-status|status]] || the referenced document represents the status (or source of status updates) for the author of this document || [http://monkinetic.com/2009/11/24/status-autodiscovery-relstatus.html blog post]&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== more brainstorming ===&lt;br /&gt;
See also:&lt;br /&gt;
* [[genealogy-brainstorming]] for some thoughts on possible additional values for family relationships (use existing [[XFN]] [[rel-parent|parent]], [[rel-child|child]], [[rel-sibling|sibling]], [[rel-spouse|spouse]], [[rel-kin|kin]] values first though)&lt;br /&gt;
* [[xpn-brainstorming]] for some thoughts on possible additional values for professional relationships (use existing [[XFN]] [[rel-co-worker|co-worker]], [[rel-colleague|colleague]] values first though)&lt;br /&gt;
&lt;br /&gt;
== POSH usage ==&lt;br /&gt;
There are numerous rel values used as [[POSH]], both in the wild, whose origins are not necessarily known, nor are their meanings consistent.  There are also numerous rel values from external proposals of varying degrees of merit.  It is useful to document their existence and summarize their implied meanings/usage intent as research that may be used to perhaps take one or more of them thru the microformats [[process]] if there is both sufficient interest and sufficient in the wild usage.&lt;br /&gt;
&lt;br /&gt;
Note: If a value is missing from this table, it may have either already been promoted by writing it up as a proposal, or demoted by being explicitly dropped. Please check the other tables first before adding to this table.&lt;br /&gt;
&lt;br /&gt;
Note: this list is incomplete, please help complete it from the following sources:&lt;br /&gt;
&lt;br /&gt;
External sources: &lt;br /&gt;
* [http://developer.mozilla.org/about/meta Meta Information in DevMo Docs] (DevMo)&lt;br /&gt;
* [http://wiki.mozilla.org/Microsummaries Microsummary]&lt;br /&gt;
* [http://lachy.id.au/dev/markup/specs/wclr/ Web Communication Link Relationships] (WCLR)&lt;br /&gt;
* [http://www.w3.org/MarkUp/Relationships.html W3C Link Relationship values draft] (LRdraft) - from a draft of the HTML spec circa 1991. &lt;br /&gt;
* [http://www.whatwg.org/specs/web-apps/current-work/multipage/section-links.html#linkTypes HTML5 draft] '''Liable to change'''&lt;br /&gt;
* [http://wiki.foaf-project.org/Autodiscovery FOAF Project Wiki: Autodiscovery] (FOAF)&lt;br /&gt;
* [http://www.apps.ietf.org/rfc/rfc4685.html RFC4685]&lt;br /&gt;
* [http://googlewebmastercentral.blogspot.com/2009/02/specify-your-canonical.html Google Blog]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! summary !! origin !! proposal(s)&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-archive|archive]] || index of archived entries || unknown, perhaps Wordpress open source blogging software || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-archives|archives]] || Provides a link to a collection of records, documents, or other materials of historical interest. ||  || HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|[[rel-author|author]]||see brainstorming above for suggested use by google||unknown || DevMo / HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-canonical|canonical]] || To help search engines disambiguate the same page with multiple representations || Google || [http://googlewebmastercentral.blogspot.com/2009/02/specify-your-canonical.html Google]/[http://www.bing.com/community/blogs/webmaster/archive/2009/02/12/partnering-to-help-solve-duplicate-content-issues.aspx Microsoft]/[http://www.ysearchblog.com/2009/02/12/fighting-duplication-adding-more-arrows-to-your-quiver/ Yahoo!], [http://blog.ask.com/2009/02/ask-is-going-canonical.html Ask Jeeves]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-comment|comment]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-contribution|contribution]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-edituri|EditURI]] &lt;br /&gt;
| Location of the xml-rpc gateway for a Wordpress install that allows external programs to add, edit and delete posts. Used by &amp;quot;[http://codex.wordpress.org/Weblog_Client WordPress blog client]&amp;quot; software for automating posting and updating blog content from your desktop. || Seen in [http://www.wordpress.org/ WordPress], e.g. [http://www.tom-watson.co.uk/].  || Description stubbed in [[rel-edituri]].&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-endorsed|endorsed]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-fan|fan]] || xxxx. || &amp;amp;hellip; || [[hcard-user-profile-authoring]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-feed|feed]] || Gives the address of a syndication feed for the current document. || &amp;amp;hellip; || WCLR/ HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-footnote|footnote]] || Location of the footnote on a link to a footnote. || Markdown preprocessors such as [http://maruku.rubyforge.org/ Maruku] || HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-icon|icon]] || Imports an icon to represent the current document. (Allowed in &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt; only) || [http://dev.w3.org/html5/spec-LC/links.html#rel-icon HTML5] || WCLR/HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-kinetic-stylesheet|kinetic-stylesheet]] || Imports a [http://kssproject.org/ KSS] 'kinetic stylesheet' to bind dynamic behavior to elements || Used in the [http://plone.org Plone] Content Management System || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-lightbox|lightbox]] || Hook - Indicates that following the link will trigger a &amp;quot;lightbox&amp;quot; script (Allowed in &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt; only) || ([http://www.google.co.uk/search?q=rel%3D%22lightbox%22 Google search for rel=lightbox in the wild]) || &amp;amp;hellip; &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-lightbox|lightbox[group_name]]] || Used by lightbox scripts to group different sets of images together.  Images from one group will not appear in another group's lightbox.  See also &amp;quot;lightbox&amp;quot;. || [http://lokeshdhakar.com/projects/lightbox2/#how Lightbox 2] || &amp;amp;hellip; &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-prettyPhoto|prettyPhoto]] || See also &amp;quot;lightbox&amp;quot; || ([http://www.google.fr/search?q=rel%3D%22prettyphoto%22 Google search for rel=&amp;quot;prettyphoto&amp;quot; in the wild]) || &amp;amp;hellip; &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-clearbox|clearbox]] || See also &amp;quot;lightbox&amp;quot; || ([http://www.google.fr/search?q=rel%3D%22clearbox%22 Google search for rel=&amp;quot;clearbox&amp;quot; in the wild]) || &amp;amp;hellip; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-made|made]] || &amp;amp;hellip; || &amp;amp;hellip; || LRdraft&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-meta|meta]] || &amp;amp;hellip; ||  [http://www.w3.org/TR/1999/REC-rdf-syntax-19990222/#transport 1999 W3C RDF syntax REC] || FOAF&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-microsummary|microsummary]]|| &amp;amp;hellip; || &amp;amp;hellip; ||[http://wiki.mozilla.org/Microsummaries Microsummary], be aware of: [[page-summary-formats#Issues_2|microsummary issues]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-noreferrer|noreferrer]] || indicates that no referrer information is to be leaked when following the link. || [http://dev.w3.org/html5/spec-LC/links.html#rel-noreferrer HTML5] || HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-openid-delegate|openid.delegate]] || &amp;amp;hellip; || ([http://www.google.co.uk/search?q=%22rel%3Dopenid%22 Google search for rel=openid.* in the wild]) || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-openid-server|openid.server]] || &amp;amp;hellip; || ([http://www.google.co.uk/search?q=%22rel%3Dopenid%22 Google search for rel=openid.* in the wild]) || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-permalink|permalink]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-pgpkey|pgpkey]] || (see also rel-publickey) || &amp;amp;hellip; || [http://golem.ph.utexas.edu/~distler/blog/archives/000320.html], [http://golem.ph.utexas.edu/~distler/blog/archives/000325.html]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-pingback|pingback]] || Gives the address of the pingback server that handles pingbacks to the current document. (Allowed in &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt; only) || &amp;amp;hellip; || WCLR/ HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-popover|popover]] || Used by a JS widget to display a large, descriptive tooltip. || [http://twitter.github.com/bootstrap Twitter's Bootstrap] [http://twitter.github.com/bootstrap/javascript.html#popovers Popover.js] || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-prefetch|prefetch]] || Specifies that the target resource should be pre-emptively cached. (Allowed in &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt; only) || &amp;amp;hellip; || HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-privacy|privacy]] || Specifies that the target resource is the privacy policy. || &amp;amp;hellip; || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-publickey|publickey]] || (see also rel-pgpkey) || &amp;amp;hellip; || [http://rasterweb.net/raster/2002/12/12/20021212072812/]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-referral|referral]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-related|related]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-replies|replies]] || indicates a continued thread || unknown || [http://www.apps.ietf.org/rfc/rfc4685.html RFC4685]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-resource|resource]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-search|search]] || &amp;amp;hellip; || unknown || unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sitemap|sitemap]] || Links to a site map document. || &amp;amp;hellip; || http://www.sitemaps.org/&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sponsor|sponsor]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-tooltip|tooltip]] || Used by a JS widget to display a tooltip similar (though more customizable) to what is shown by browsers if the 'title' attribute is present. || [http://twitter.github.com/bootstrap Twitter's Bootstrap] [http://twitter.github.com/bootstrap/javascript.html#tooltips Tooltip.js] (and likely other JS tools) || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-trackback|trackback]] || &amp;amp;hellip; || unknown, perhaps open source Movable Type blogging software || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-unendorsed|unendorsed]] || (probably redundant to [[rel-nofollow|nofollow]]) || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-user|user]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-wlwmanifest|wlwmanifest]] || Used by &amp;quot;[http://explore.live.com/windows-live-writer Windows Live Writer],&amp;quot; a Microsoft [http://codex.wordpress.org/Weblog_Client blog client] for automating posting and updating blog content from your desktop. || Seen in [http://www.wordpress.org/ WordPress], e.g. [http://www.tom-watson.co.uk/]. Similar values are probably used by other blog content management systems as well. || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== WCLR ===&lt;br /&gt;
&lt;br /&gt;
The WCLR proposal is described by its author (in e-mail, 2007-09-25) as:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&amp;amp;hellip;now effectively obsolete, since HTML5 and Microformats cover all the worthwhile relationships in that already.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
These are [http://www.whatwg.org/specs/web-apps/current-work/multipage/section-links.html#linkTypes covered by HTML5 already]:&lt;br /&gt;
&lt;br /&gt;
* permalink -&amp;gt; bookmark&lt;br /&gt;
* archive -&amp;gt; archives&lt;br /&gt;
* feed&lt;br /&gt;
* pingback&lt;br /&gt;
* unendorsed -&amp;gt; nofollow&lt;br /&gt;
&lt;br /&gt;
The rest now seem unnecessary.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Nonetheless, there may be some mileage in using them in microformats, at least until HTML5 is widely available.&lt;br /&gt;
&lt;br /&gt;
== Dublin Core ==&lt;br /&gt;
In the past, Dublin Core values have been added to this page in the table about HTML5 features, but no examples, nor an actual specification explicitly stating how the value(s) should be used in HTML could be found. The linked specifications below have been updated so we should start considering Dublin Core values accordingly.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! summary !! source&lt;br /&gt;
|-&lt;br /&gt;
| schema.DC || a specification of all metadata terms maintained by the Dublin Core Metadata Initiative, with regard to the fifteen terms of the Dublin Core Metadata Element Set already published || [http://www.dublincore.org/documents/dcq-html/ Dublin Core]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| schema.DCTERMS || a specification of all metadata terms maintained by the Dublin Core Metadata Initiative, reflecting the changes described more fully in the 2012 document &amp;quot;Maintenance changes to DCMI Metadata Terms&amp;quot; [http://dublincore.org/usage/decisions/2012/dcterms-changes/] || [http://www.dublincore.org/documents/dcq-html/ Dublin Core]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
'''Issues need updating given new information from linked resources.'''&lt;br /&gt;
&lt;br /&gt;
Notes:&lt;br /&gt;
* Dublin Core. This search may help: [http://www.google.co.uk/search?as_q=rel%3Dschema.*&amp;amp;hl=en&amp;amp;num=10&amp;amp;btnG=Google+Search&amp;amp;as_epq=&amp;amp;as_oq=&amp;amp;as_eq=&amp;amp;lr=&amp;amp;as_ft=i&amp;amp;as_filetype=&amp;amp;as_qdr=all&amp;amp;as_occt=any&amp;amp;as_dt=i&amp;amp;as_sitesearch=http%3A%2F%2Fdublincore.org&amp;amp;as_rights=&amp;amp;safe=images]. &lt;br /&gt;
** '''examples from that search only use invisible &amp;lt;code&amp;gt;&amp;amp;lt;link href&amp;amp;gt;&amp;lt;/code&amp;gt; element'''. At first glance it appears the results from the search show only uses with the invisible &amp;lt;code&amp;gt;&amp;amp;lt;link href&amp;amp;gt;&amp;lt;/code&amp;gt; element which is not ideal for content relationships.  Content relationships should be user visible and thus uses with &amp;lt;code&amp;gt;&amp;amp;lt;a href&amp;amp;gt;&amp;lt;/code&amp;gt; are strongly preferred.  &lt;br /&gt;
*** [http://www.ietf.org/rfc/rfc2731.txt RFC2731] defines &amp;lt;code&amp;gt;rel=&amp;quot;schema.AC&amp;quot;&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;rel=&amp;quot;schema.RC&amp;quot;&amp;lt;/code&amp;gt; with the pattern &amp;lt;code&amp;gt;rel=&amp;quot;schema.PREFIX&amp;quot;&amp;lt;/code&amp;gt; as a syntax for defining namespaces for use in meta[@name], *[@rel], *[@rev] and (as per eRDF) *[@class] attributes. A link to a Dublin Core metadata schema is generally not suitable for end users, so &amp;lt;code&amp;gt;&amp;amp;lt;link href&amp;amp;gt;&amp;lt;/code&amp;gt; appears to be more appropriate than &amp;lt;code&amp;gt;&amp;amp;lt;a href&amp;amp;gt;&amp;lt;/code&amp;gt; for those that use Dublin Core metadata schemas.&lt;br /&gt;
*** The scheme proposed above provides metadata namespace declarations. As described by DCMI specifications, such indications '''cannot''' be provided w/o a suitable namespace. In order to give complete pieces of information, the correct description set must be: &amp;lt;code&amp;gt;&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot;&amp;amp;gt;&amp;lt;/code&amp;gt; (for the namespace declaration, followed by) &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.&amp;lt;nowiki&amp;gt;[element]&amp;lt;/nowiki&amp;gt;&amp;quot; content=&amp;quot;&amp;lt;nowiki&amp;gt;[element.value]&amp;lt;/nowiki&amp;gt;&amp;quot;&amp;amp;gt;&amp;lt;/code&amp;gt; for related elements. &lt;br /&gt;
**** Note: [http://purl.org/dc/terms/ schema.DCTERMS] is conventionally related to an upgraded elements list than [http://purl.org/dc/elements/1.1/ schema.DC] and should be preferred as rel values. Both are discussed here for subject completeness) &lt;br /&gt;
** '''proposal to use in content currently only theoretical'''. Thus unfortunately the use of Dublin Core in user visible content like &amp;lt;code&amp;gt;&amp;amp;lt;a href&amp;amp;gt;&amp;lt;/code&amp;gt; appears to be strictly theoretical. See [http://microformats.org/discuss/mail/microformats-discuss/2008-January/011445.html microformats-discuss/2008-January/011445.html] for a proposal to use Dublin Core in user visible content.&lt;br /&gt;
*** '''recent improvements'''. DCMI solves some trouble concerning metadata through the ''description set model''. Some of these informations cannot currently be provided in any standard ways other than DC, namely dates, validity and periodicity. Following this public bug report ([https://www.w3.org/Bugs/Public/show_bug.cgi?format=multiple&amp;amp;id=22520]), the correct namespace declaration for DC and DCTERMS metadata are now considered valid HTML code. We '''must''' encourage this practice both for internal usefulness and for shared practices. &lt;br /&gt;
&lt;br /&gt;
* The Dublin Core document [http://dublincore.org/documents/dc-html/ &amp;quot;Expressing Dublin Core metadata using HTML/XHTML meta and link elements&amp;quot;] is a specification for, and gives examples of, both &amp;lt;link rel=&amp;quot;schema.DC&amp;quot; href=&amp;quot;http://purl.org/dc/elements/1.1/&amp;quot;&amp;gt; and &amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot;&amp;gt;. Note that Dublin Core encourages the use of DCTERMS elements over DC. A list of projects which use Dublin Core metadata is maintained [http://dublincore.org/projects/ here].&lt;br /&gt;
* [http://dublincore.org/documents/dc-html/ &amp;quot;Expressing Dublin Core metadata using HTML/XHTML meta and link elements&amp;quot;] also includes examples of &amp;lt;link rel=&amp;quot;DCTERMS.[element]&amp;quot; href=&amp;quot;&amp;quot;&amp;gt;, where [element] = subject, isReferencedBy, creator, and publisher. The &amp;lt;link&amp;gt; tag is used instead of the &amp;lt;meta&amp;gt; tag whenever the content is a URL. (Note that this use is different from, but related to, &amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;quot;&amp;gt;.) Potentially, ''any'' of the 55 DCTERMS elements could be used in this way, and this could include use in HTML 5.&lt;br /&gt;
** As said before, HTML5 validators now allow the use of &amp;lt;code&amp;gt;&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot;&amp;amp;gt;&amp;lt;/code&amp;gt; for namespace declarations.&lt;br /&gt;
&lt;br /&gt;
== Use with HTTP Link Header ==&lt;br /&gt;
You can also use any of the rel values (that are allowed for link elements) with HTTP Link Headers, &lt;br /&gt;
&lt;br /&gt;
Example: returning a Javascript file with a license (since JS itself has no way to indicate a license)&lt;br /&gt;
&amp;lt;source lang=text&amp;gt;&lt;br /&gt;
Link: &amp;lt;http://creativecommons.org/publicdomain/zero/1.0/&amp;gt;; rel=&amp;quot;license&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For multiple licenses (e.g. CC-SA and GPL), simply use multiple &amp;lt;code&amp;gt;Link:&amp;lt;/code&amp;gt; headers.&lt;br /&gt;
&amp;lt;source lang=text&amp;gt;&lt;br /&gt;
Link: &amp;lt;http://creativecommons.org/licenses/by-sa/3.0/&amp;gt;; rel=&amp;quot;license&amp;quot;&lt;br /&gt;
Link: &amp;lt;http://www.gnu.org/licenses/gpl.html&amp;gt;; rel=&amp;quot;license&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Example: similarly, linking to a copyright statement for an image:&lt;br /&gt;
&amp;lt;source lang=text&amp;gt;&lt;br /&gt;
Link: &amp;lt;http://example.org/copyright.html&amp;gt;; rel=&amp;quot;copyright&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
or providing a brief inline copyright statement:&lt;br /&gt;
&amp;lt;source lang=text&amp;gt;&lt;br /&gt;
Link: &amp;lt;data:text/plain;charset=utf-8,Copyright 2013 ExampleCo, All Rights Reserved.&amp;gt;; rel=&amp;quot;copyright&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== unspecified ==&lt;br /&gt;
Some rel values have been added to this page perhaps in one of the tables above, but no examples, nor an actual specification explicitly stating that the value(s) should be used in the HTML 'rel' attribute could be found. They are listed here in the hopes someone can discover more specific/precise URLs to examples or specifications about them (preferably both).  Until such precise URLs to examples/specs are provided, the values can be treated as they are purely theoretical and thus of little interest.&lt;br /&gt;
&lt;br /&gt;
A simple list here is sufficient.&lt;br /&gt;
&lt;br /&gt;
== non HTML rel values ==&lt;br /&gt;
There are markup languages other than HTML that also have a rel attribute, often based upon the HTML rel attribute.&lt;br /&gt;
It is useful to document some of these other languages and their rel values for both reference purposes, and to provide  background research for the possible development and re-use of these values in HTML, as [[poshformats]] or [[microformats]]&lt;br /&gt;
&lt;br /&gt;
Sources:&lt;br /&gt;
* [[Atom]] [[RFC4287]] specification. &lt;br /&gt;
* See http://www.iana.org/assignments/link-relations.html for more.&lt;br /&gt;
* See [http://amundsen.com/media-types/maze/format/#link-relations Maze+XML]&lt;br /&gt;
* See [http://amundsen.com/media-types/collection/format/#link-relations Collection+JSON]&lt;br /&gt;
* See [http://www.opensearch.org/Specifications/OpenSearch/1.1#Url_rel_values OpenSearch]&lt;br /&gt;
* See [http://tools.ietf.org/html/rfc6861 The Create-Form and Edit-Form Link Relations (RFC6861)]&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! summary&amp;lt;br /&amp;gt;(from the relevant specification where possible)) !! defining specification&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| self&lt;br /&gt;
| From http://www.ietf.org/rfc/rfc4287.txt : &amp;lt;blockquote&amp;gt;The value &amp;quot;self&amp;quot; signifies that the IRI in the value of the href attribute identifies a resource equivalent to the containing element.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
| [[Atom]] http://www.ietf.org/rfc/rfc4287.txt&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| http://gdata.youtube.com/schemas/2007#in-reply-to || See http://code.google.com/apis/youtube/2.0/developers_guide_protocol_comments.html || YouTube extension to Atom&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| collection || Refers to a resource which represents a collection of which the current resource is a member.&lt;br /&gt;
&lt;br /&gt;
When used in the Maze+XML media type, the associated URI returns the available collection of mazes.&lt;br /&gt;
  || Maze+XML, Collection+JSON, OpenSearch&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| east || Refers to a resource to the &amp;quot;east&amp;quot; of the current resource.&lt;br /&gt;
&lt;br /&gt;
When used in the Maze+XML media type, the associated URI points to a neighboring cell resource to the east in the active maze.&lt;br /&gt;
&lt;br /&gt;
 || Maze+XML&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| exit || Refers to a resource that represents the exit or end of the current client actvity or process.&lt;br /&gt;
&lt;br /&gt;
When used in the Maze+XML media type, the associated URI points to the final exit resource of the active maze.&lt;br /&gt;
&lt;br /&gt;
 || Maze+XML&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| north || Refers to a resource that is &amp;quot;north&amp;quot; of the current resource.&lt;br /&gt;
&lt;br /&gt;
When used in the Maze+XML media type, the associated URI points to a neighboring cell resource to the north in the active maze.&lt;br /&gt;
&lt;br /&gt;
 || Maze+XML&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| south || Refers to a resource that is &amp;quot;south&amp;quot; of the current resource.&lt;br /&gt;
&lt;br /&gt;
When used in the Maze+XML media type, the associated URI points to a neighboring cell resource to the south in the active maze.&lt;br /&gt;
&lt;br /&gt;
 || Maze+XML&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-via|via]] || Identifies a resource that is the source of the information in the context. ||  Atom 1.0 Syndication format (RFC 4287)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| west || Refers to a resource that is &amp;quot;west&amp;quot; of the current resource.&lt;br /&gt;
&lt;br /&gt;
When used in the Maze+XML media type, the associated URI points to a neighboring cell resource to the west in the active maze.&lt;br /&gt;
&lt;br /&gt;
 || Maze+XML&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| item || The target IRI points to a resource that is a member of a collection represented by the context IRI. || Collection+JSON&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| create-form || When included in a resource, the &amp;quot;create-form&amp;quot; link relation MAY identify a target resource that represents the form to append a new member to the link context. || See [http://tools.ietf.org/html/rfc6861 The Create-Form and Edit-Form Link Relations (RFC6861)]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| edit-form || When included in a resource, the &amp;quot;edit-form&amp;quot; link relation identifies a target resource that represents the form for editing associated resource. || See [http://tools.ietf.org/html/rfc6861 The Create-Form and Edit-Form Link Relations (RFC6861)]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| lightframe || Opens the target in a lightbox. On inclusion it provides a simple target the lightframe and loads the content in a lightbox effect || Lightbox&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| superbox[image] || jQuery Superbox! is a script which allows you display windows with the lightbox effect. || superbox&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| wp-video-lightbox || wp-video-lightbox! is a rel to anchor tag script display videos with the lightbox effect. || wp-video-lightbox&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| youtube || Opens the target youtube video in using the Swipebox Plugin || Swipebox&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| shadowbox || shadowbox is a jQuery script for images displaying with the &amp;quot;lightbox&amp;quot; effects. || shadowbox&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| permission || When included in a resource, the &amp;quot;permission&amp;quot; link relation MAY identify a target resource that represents the list of entities that can access or modify the resource in the link context. || See [http://cdoc.io/spec.html#permission-link-relation Collection Document Media Type Specification]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| version-history&lt;br /&gt;
| When included on a versioned resource, this link points to a resource containing the version history for this resource.&lt;br /&gt;
| [http://tools.ietf.org/html/rfc5829 RFC 5829]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| latest-version&lt;br /&gt;
| When included on a versioned resource, this link points to a resource containing the latest (e.g., current) version.&lt;br /&gt;
| [http://tools.ietf.org/html/rfc5829 RFC 5829]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| working-copy&lt;br /&gt;
| When included on a versioned resource, this link points to a working copy for this resource.&lt;br /&gt;
| [http://tools.ietf.org/html/rfc5829 RFC 5829]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| working-copy-of&lt;br /&gt;
| When included on a working copy, this link points to the versioned resource from which this working copy was obtained.&lt;br /&gt;
| [http://tools.ietf.org/html/rfc5829 RFC 5829]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| predecessor-version&lt;br /&gt;
| When included on a versioned resource, this link points to a resource containing the predecessor version in the version history.&lt;br /&gt;
| [http://tools.ietf.org/html/rfc5829 RFC 5829]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| successor-version&lt;br /&gt;
| When included on a versioned resource, this link points to a resource containing the successor version in the version history.&lt;br /&gt;
| [http://tools.ietf.org/html/rfc5829 RFC 5829]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| ... || ... || ...&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== dropped ==&lt;br /&gt;
The following rel values were in earlier version(s) of specification(s) and it is presumed by their absence from the most recent version of the respective specification(s) that they have been deprecated or obsoleted. &lt;br /&gt;
&lt;br /&gt;
In general, you {{should not}} use any dropped values.&lt;br /&gt;
&lt;br /&gt;
If any such values have been superceded by standard values (see the first table on this page), then you {{must not}} use the dropped versions.&lt;br /&gt;
&lt;br /&gt;
In particular:&lt;br /&gt;
* if a rel value was in a draft and is missing (without explanation) from the final spec, or&lt;br /&gt;
* if a rel value was in a previous version of and is missing (without explanation) from an update to the specification (even a draft update)&lt;br /&gt;
&lt;br /&gt;
Then absent any other information or explanation, it is presumed that the group/editors working on that specification decided to explicitly drop it (either in development, or in the updated version) and thus it should be obsoleted (not re-registered). &lt;br /&gt;
&lt;br /&gt;
If you wish to add them, please research &amp;lt;em&amp;gt;why&amp;lt;/em&amp;gt; such values were omitted from latter specifications before doing so. If you do discover the reasoning, please add a short statement or link to thereof into the appropriate place in the following table.&lt;br /&gt;
&lt;br /&gt;
If there is more data, e.g. a link to an email of discussion of the spec development that explains ''why'' the rel value was dropped, and it explicitly states, e.g. it was without prejudice, or merely post-poned, or perhaps expected to be spun-out into its spec (or some other explicit positive reason), then it makes to link/cite that explicit text as part of a proposal.&lt;br /&gt;
&lt;br /&gt;
Sources: &lt;br /&gt;
* [http://www.w3.org/MarkUp/html3/ HTML3] (HTML3) / has been superceded by [http://www.w3.org/MarkUp/Wilbur/ HTML 3.2] - which itself has been superceded by [http://www.w3.org/TR/REC-html40 HTML 4.0] - which itself has been updated by [http://w3.org/TR/html401 HTML 4.01], commonly referred to as &amp;quot;HTML 4&amp;quot; in this wiki and other places.)&lt;br /&gt;
* [http://www.w3.org/TR/relations.html Proposed HTML 4.0 link types] (HTML4dropped) - obsoleted/superceded by the HTML 4.0 Recommendation.  Any values that were in the &amp;quot;Proposed HTML 4.0 link types&amp;quot; document but didn't make it into the HTML 4.0 Recommendation were thus explicitly dropped and should be avoided.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! summary !! defining specification !! why dropped &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|[[rel-banner|banner]]||Was used to reference another document to be used as banner for this document (i.e. a form of &amp;quot;include&amp;quot; statement).|| HTML3 ||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-begin|begin]] || identifies the author-defined start of a sequence of documents of which the current document is a node.&lt;br /&gt;
 || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-biblioentry|biblioentry]] || identifies a bibliographic entry || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-bibliography|bibliography]] || identifies a bibliography || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-child|child]] (obsolete/superceded) || the target document is a hierarchical child, or subdocument, of the current document|| HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-citation|citation]] || the target is a bibliographic citation || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-collection|collection]] || the target document is an collection that contains the current document || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-definition|definition]] || identifies a definition of a term || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-disclaimer|disclaimer]] || identifies a hypertext link to a legal disclaimer || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-editor|editor]] || identifies a hypertext link to an editor || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-end|end]] || identifies the author-defined end of a sequence of documents of which the current document is a node. || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-footnote|footnote]] || the anchor is a footnote marker and the target is a footnote || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-navigate|navigate]] || the target document contains information such as a image map that will help users to gain a sense of how and where to found information || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-origin|origin]] || synonym for &amp;lt;code&amp;gt;top&amp;lt;/code&amp;gt; || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-parent|parent]] (obsolete/superceded) || the target document is the hierarchical parent, or container, of the current document|| HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-pointer|pointer]] || the target is a pointer to the real target. This value can be used by a user agent to perform a pre-fetch of the specified target for evaluation until the real target is reached || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-publisher|publisher]] || identifies a hypertext link to a publisher || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sibling|sibling]] (obsolete/superceded) || the target document is a child of a common parent, or a hierarchical peer of the current document|| HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-top|top]] || the target document is the logical top node of the tree (see also &amp;lt;code&amp;gt;begin&amp;lt;/code&amp;gt;) || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-trademark|trademark]] || identifies a hypertext link to a trademark notice || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-translation|translation]] || the target is a translation to another language || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-urc|urc]] || identifies a Universal Resource Citation || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== dropped without prejudice ==&lt;br /&gt;
In one known instance (from HTML4 to HTML5), some rel values were in an earlier version of a specification (or a proposal) and were dropped from a latter (draft) version, and it was noted that these values were dropped with the intent that they could still be proposed in a registry and thus they explicitly were not deprecated or obsoleted. This section documents such values as separate from the [[#dropped|dropped]] section.&lt;br /&gt;
&lt;br /&gt;
In general, you {{should not}} use any dropped values.&lt;br /&gt;
&lt;br /&gt;
If any such values have been superceded by standard values (see the first table on this page), then you {{must not}} use the dropped versions.&lt;br /&gt;
&lt;br /&gt;
Rel values that were dropped without prejudice from a specification will be considered similar to new values that have never been specified.&lt;br /&gt;
&lt;br /&gt;
If you know of additional rel values that were dropped without prejudice from an update to a specification, please cite a URL and quote from the group developing the specification that officially states from that group that the dropping of the values was done without prejudice, or equivalent statement (such as explicit allowance of external registration, proposal, and/or development).&lt;br /&gt;
&lt;br /&gt;
This table serves a historical purpose. If you wish to propose a value from this table, please copy it and leave it in place.&lt;br /&gt;
&lt;br /&gt;
Sources: &lt;br /&gt;
* Several rel values were [http://www.w3.org/Bugs/Public/show_bug.cgi?id=7475#c15 explicitly dropped from HTML5]. Per: [http://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html Issue 118 Decision] ('''emphasis''' added): &amp;lt;blockquote&amp;gt;&amp;lt;p&amp;gt;&amp;quot;The final proposal argues for the removal of some relation values, to wit, it suggests removal of '''index, up, first and last'''. It was pointed out in survey comments that these relations are already registered in the IANA link relation registry. Presumably, '''these relations could also be entered in whatever other registry or registries HTML5 adopts for this purpose'''.&amp;lt;/p&amp;gt;...&amp;lt;p&amp;gt;&amp;quot;Next Steps&amp;lt;/p&amp;gt;...&amp;lt;p&amp;gt;&amp;quot;Since the relations to be removed are already registered at the IANA link relation registry, no further action is needed to include them there. WG members are '''free to register or record these relations elsehwere''' [sic], as well.&amp;quot;&amp;lt;/p&amp;gt;&amp;lt;/blockquote&amp;gt; &lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value&lt;br /&gt;
! summary&lt;br /&gt;
! defining specification&lt;br /&gt;
! why dropped &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-first|first]]&lt;br /&gt;
| synonym for &amp;lt;code&amp;gt;begin&amp;lt;/code&amp;gt;&lt;br /&gt;
| HTML4dropped - never in an official spec&lt;br /&gt;
| [http://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html Explicitly dropped from HTML5 interim draft yet permitted for external registry]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-index|index]]&lt;br /&gt;
| Refers to a document providing an index for the current document.&lt;br /&gt;
| was in [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4]&lt;br /&gt;
| [http://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html Explicitly dropped from HTML5 interim draft yet permitted for external registry]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-last|last]]&lt;br /&gt;
| synonym for &amp;lt;code&amp;gt;end&amp;lt;/code&amp;gt;&lt;br /&gt;
| HTML4dropped - never in an official spec&lt;br /&gt;
| [http://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html Explicitly dropped from HTML5 interim draft yet permitted for external registry]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-up|up]]&lt;br /&gt;
|When the document forms part of a hierarchy, this link references the immediate parent of the current document.&lt;br /&gt;
| was in [http://www.w3.org/MarkUp/html3/dochead.html HTML3] - but [http://www.w3.org/TR/html401/types.html#type-links dropped in HTML4]&lt;br /&gt;
| [http://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html Explicitly dropped from HTML5 interim draft yet permitted for external registry]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
See related [http://dev.w3.org/html5/spec/links.html#linkTypes HTML5: Link types] for existing HTML5 specified rel values.&lt;br /&gt;
&lt;br /&gt;
== rejected ==&lt;br /&gt;
Some rel values have been proposed and rejected.  They are listed here to make that explicit.  Authors {{must not}} use rejected rel values.&lt;br /&gt;
&lt;br /&gt;
Source: [[rejected-formats]].&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! origin / proposal !! why rejected &lt;br /&gt;
|-&lt;br /&gt;
| [[rel-logo|logo]]&lt;br /&gt;
| [http://relogo.org Relogo.org]&lt;br /&gt;
| [[rejected-formats#Logo]]&lt;br /&gt;
|-&lt;br /&gt;
|[[rel-pavatar|pavatar]] || [http://pavatar.com/ pavatar] || [[rejected-formats#Pavatar]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== tools ==&lt;br /&gt;
See [[implementations]].&lt;br /&gt;
&lt;br /&gt;
== addtional external research ==&lt;br /&gt;
Here are some additional historical references to the development or rel-values which may be useful when researching values, especially why specific values may have been proposed but abandoned.&lt;br /&gt;
* 1996-06-07 [http://www.w3.org/MarkUp/draft-ietf-html-relrev-00.txt Hypertext links in HTML] (copies: [http://ftp.ics.uci.edu/pub/ietf/html/draft-ietf-html-relrev-00.txt ftp.ics.uci.edu])&lt;br /&gt;
* 1996-11-13 [http://www.w3.org/Architecture/NOTE-link Describing and Linking Web Resources] &lt;br /&gt;
* 1997-01-23 [http://lists.gnu.org/archive/html/lynx-dev/1997-01/msg00537.html LYNX-DEV Lynx and the LINK tag] &lt;br /&gt;
* 1997-01-24 [http://lists.w3.org/Archives/Public/w3c-sgml-wg/1997Jan/0357.html Taxonomy list] &lt;br /&gt;
* 1997-03-28 [http://www.w3.org/TR/WD-htmllink-970328 W3C Working Draft: Hypertext Links and Meta Information in HTML]&lt;br /&gt;
 &lt;br /&gt;
=== previous attempts at documenting ===&lt;br /&gt;
There have been previous attempts at documenting known rel values, most of which fell out of date due to being dependent on a single author maintaining them. They're listed here purely for historical reasons, and are not sufficient to be references of their own (since they're just individual curations of other references)&lt;br /&gt;
* [http://fantasai.tripod.com/qref/Appendix/LinkTypes/ltdef.html Link Type Definitions Glossary] by fantasai&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== related ==&lt;br /&gt;
{{rel-related-pages}}&lt;br /&gt;
* [[elemental-microformats]]&lt;br /&gt;
* [[existing-rev-values]]&lt;br /&gt;
* [[existing-class-names]]&lt;br /&gt;
&lt;br /&gt;
== copyright ==&lt;br /&gt;
&lt;br /&gt;
{{cc-pd-license}}&lt;/div&gt;</summary>
		<author><name>Andy sky</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=existing-rel-values&amp;diff=56267</id>
		<title>existing-rel-values</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=existing-rel-values&amp;diff=56267"/>
		<updated>2013-07-02T00:59:44Z</updated>

		<summary type="html">&lt;p&gt;Andy sky: Updated information table and notes about Dublin Core metadata namespaces. Table moved nex to HTML5 proposals.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;entry-title&amp;gt; existing rel values &amp;lt;/entry-title&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This page contains tables of known HTML rel values from specifications, formats, proposals, brainstorms, and non-trivial [[POSH]] usage in the wild.  In addition, dropped and rejected values are listed at the end for comprehensiveness.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;usage&amp;quot;&amp;gt;usage&amp;lt;/span&amp;gt;: see [[rel-faq#How_is_rel_used|how is 'rel' used]].  Regarding &amp;lt;span id=&amp;quot;rev&amp;quot;&amp;gt;rev&amp;lt;/span&amp;gt;, see: [[rel-faq#Should_rev_even_be_used|should 'rev' even be used]].&lt;br /&gt;
&lt;br /&gt;
== formats ==&lt;br /&gt;
These rel values are defined formats from specifications (HTML 4, microformats) are thus are &amp;lt;strong&amp;gt;recommended for general use&amp;lt;/strong&amp;gt;.  Alphabetically ordered by value.&lt;br /&gt;
&lt;br /&gt;
Note:&lt;br /&gt;
* &amp;lt;strong&amp;gt;Do not&amp;lt;/strong&amp;gt; add proposed rel values for HTML5 here, add them to the [[#HTML5_link_type_extensions|HTML5 link type extensions]] table.&lt;br /&gt;
* &amp;lt;strong&amp;gt;Do not&amp;lt;/strong&amp;gt; add rel values you find in the wild to this table of rel formats, instead add them to the table in the [[existing-rel-values#POSH_usage|POSH section]].&lt;br /&gt;
* &amp;lt;strong&amp;gt;Do not&amp;lt;/strong&amp;gt; add non-HTML rel values you find to this table of rel formats, instead add them to the table in the [[existing-rel-values#non_HTML_rel_values|non HTML rel values section]].&lt;br /&gt;
* &amp;lt;strong&amp;gt;Do not&amp;lt;/strong&amp;gt; add rel values from obsolete/superceded proposals or drafts, instead add them to the table in the &amp;quot;dropped&amp;quot; section.&lt;br /&gt;
&lt;br /&gt;
Sources:&lt;br /&gt;
* W3C Recommendations: &lt;br /&gt;
** [http://www.w3.org/TR/html401/types.html#h-6.12 HTML 4.01 section 6.12 Link types] (HTML4 Link types)&lt;br /&gt;
** [http://www.w3.org/TR/grddl/ Gleaning Resource Descriptions from Dialects of Languages] (GRDDL)&lt;br /&gt;
* [[microformats]] specifications&lt;br /&gt;
** [[xfn]]&lt;br /&gt;
** [[rel-license]]&lt;br /&gt;
** [[rel-nofollow]]&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! Keyword&lt;br /&gt;
! Effect on &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt;&lt;br /&gt;
! Effect on &amp;lt;code&amp;gt;a&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;area&amp;lt;/code&amp;gt;&lt;br /&gt;
! Brief description &amp;lt;br /&amp;gt;(from the relevant specification where possible)&lt;br /&gt;
! Link to defining specification&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-acquaintance|acquaintance]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the person represented by the current document considers the person represented by the referenced document to be an acquaintance&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-alternate|alternate]]&lt;br /&gt;
| external resource&lt;br /&gt;
| external relation&lt;br /&gt;
| Designates substitute versions for the document in which the link occurs. When used together with the &amp;lt;code&amp;gt;lang&amp;lt;/code&amp;gt; attribute, it implies a translated version of the document. When used together with the &amp;lt;code&amp;gt;media&amp;lt;/code&amp;gt; attribute, it implies a version designed for a different medium (or media). &lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-appendix|appendix]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document serving as an appendix in a collection of documents. &lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-bookmark|bookmark]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a bookmark. A bookmark is a link to a key entry point within an extended document. The &amp;lt;code&amp;gt;title&amp;lt;/code&amp;gt; attribute may be used, for example, to label the bookmark. Note that several bookmarks may be defined in each document. &lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-chapter|chapter]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document serving as a chapter in a collection of documents.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-child|child]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is a child of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-colleague|colleague]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is a colleague of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-contact|contact]] &lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the person represented by the current document considers the person represented by the referenced document to be a contact&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-contents|contents]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document serving as a table of contents. Some user agents also support the synonym ToC (from &amp;quot;Table of Contents&amp;quot;).&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-copyright|copyright]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a copyright statement for the current document.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-co-resident|co-resident]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person lives in the same residence as the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-co-worker|co-worker]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is a co-worker of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-crush|crush]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| this person considers the referenced person to be a crush (i.e. has a crush on the referenced person)&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-date|date]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| this person considers the referenced person to be a date (i.e. is dating the referenced person)&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-friend|friend]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the person represented by the current document considers the person represented by the referenced document to be a friend&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-glossary|glossary]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document providing a list of terms and their definitions that pertain to the current document.||[http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-help|help]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document offering help (more information, links to other sources information, etc.)&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-its-rules|its-rules]]&lt;br /&gt;
| allowed&lt;br /&gt;
| not allowed&lt;br /&gt;
| Refers to a document with external ITS rules.&lt;br /&gt;
| [http://www.w3.org/TR/its20/#selection-global-html5 Internationalization Tag Set (ITS) Version 2.0]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-kin|kin]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is part of the extended family of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-license|license]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| &amp;amp;hellip;indicates that the &amp;lt;nowiki&amp;gt;[referenced document]&amp;lt;/nowiki&amp;gt; is a license for the current page.&lt;br /&gt;
| [[rel-license]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-me|me]]&lt;br /&gt;
| external relation&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced document represents the same person as does the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-met|met]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| this person has met the referenced person&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-muse|muse]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person inspires the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-neighbor|neighbor]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person lives nearby the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-next|next]]&lt;br /&gt;
| external relation&lt;br /&gt;
| external relation&lt;br /&gt;
| Refers to the next document in a linear sequence of documents. User agents may choose to preload the &amp;quot;next&amp;quot; document, to reduce the perceived load time.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-nofollow|nofollow]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| indicates that the destination of that hyperlink {{should-not}} be afforded any additional weight or ranking by user agents which perform link analysis upon web pages (e.g. search engines).&lt;br /&gt;
| [[rel-nofollow]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-parent|parent]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is a parent of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-prev|prev]]&lt;br /&gt;
| external relation&lt;br /&gt;
| external relation&lt;br /&gt;
| Refers to the previous document in an ordered series of documents. Some user agents also support the synonym &amp;quot;Previous&amp;quot;.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-previous|previous]]&lt;br /&gt;
| external relation&lt;br /&gt;
| external relation&lt;br /&gt;
| Synonym of &amp;lt;code&amp;gt;prev&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-section|section]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document serving as a section in a collection of documents.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sibling|sibling]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is a sibling of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-spouse|spouse]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| the referenced person is a spouse of the person represented by the current document&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-start|start]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to the first document in a collection of documents. This link type tells search engines which document is considered by the author to be the starting point of the collection.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-stylesheet|stylesheet]]&lt;br /&gt;
| external resource&lt;br /&gt;
| not allowed&lt;br /&gt;
| a style sheet for the current document&amp;lt;br /&amp;gt; used with the invisible &amp;lt;link href&amp;gt; element which is not ideal for content relationships. Content relationships should be user visible and thus uses with &amp;lt;a href&amp;gt; are strongly preferred. Unfortunately the use of stylesheet in user visible content like &amp;lt;a href&amp;gt; appears to be strictly theoretical.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-subsection|subsection]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Refers to a document serving as a subsection in a collection of documents.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sweetheart|sweetheart]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| external relation&lt;br /&gt;
| this person considers the referenced person to be their sweetheart&lt;br /&gt;
| [[XFN]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-tag|tag]]&lt;br /&gt;
| not allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| &amp;amp;hellip;indicates that the &amp;lt;nowiki&amp;gt;[referenced document]&amp;lt;/nowiki&amp;gt; is an author-designated &amp;quot;tag&amp;quot; (or keyword/subject) for the current page.&lt;br /&gt;
| [[rel-tag]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-toc|toc]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Synonym of &amp;lt;code&amp;gt;contents&amp;lt;/code&amp;gt; (from &amp;quot;Table Of Contents&amp;quot;)&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4 Link types]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-transformation|transformation]]&lt;br /&gt;
| allowed&lt;br /&gt;
| allowed&lt;br /&gt;
| Relates a source document to a transformation, usually represented in XSLT, that relates the source document syntax to the RDF graph syntax. Used in [[grddl|GRDDL]]&lt;br /&gt;
| [http://www.w3.org/TR/grddl/#transformation GRDDL] &lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== notes ===&lt;br /&gt;
*&amp;lt;code&amp;gt;rel=&amp;quot;alternate&amp;quot;&amp;lt;/code&amp;gt; can take further meaning from additional attributes, such as &lt;br /&gt;
** &amp;lt;code&amp;gt;rel=&amp;quot;alternate&amp;quot; lang=&amp;quot;fr&amp;quot;&amp;lt;/code&amp;gt; (French language version of this page)&lt;br /&gt;
** &amp;lt;code&amp;gt;rel=&amp;quot;alternate&amp;quot; media=&amp;quot;print&amp;quot;&amp;lt;/code&amp;gt; (printable version of this page)&lt;br /&gt;
** &amp;lt;code&amp;gt;rel=&amp;quot;alternate&amp;quot; media=&amp;quot;handheld&amp;quot;&amp;lt;/code&amp;gt; (version of the page intended or better for handheld/portable devices like PDAs, cell phones, etc.)&lt;br /&gt;
&lt;br /&gt;
*Synonyms such as &amp;quot;previous&amp;quot;, &amp;quot;toc&amp;quot; are not as widely supported as the main term.&lt;br /&gt;
&lt;br /&gt;
== proposals ==&lt;br /&gt;
A few rel values have been developed as drafts as a result of going through most of the microformats [[process]], and are thus listed here for your serious consideration. You &amp;lt;strong&amp;gt;may use these values&amp;lt;/strong&amp;gt;, and if you find any problems with them please point them out on the respective &amp;quot;issues&amp;quot; page for the rel value.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! summary !! proposed in !! external spec (if any)&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-pronunciation|pronunciation]] || &amp;amp;hellip;indicates that the destination of the 'link' element is a document providing a pronunciation lexicon for speech-synthesis purposes. || [[rel-pronunciation]]&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-directory|directory]] || &amp;amp;hellip;indicates that the destination of the hyperlink is a directory listing containing an entry for the current page. || [[rel-directory]]&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-enclosure|enclosure]] || &amp;amp;hellip;indicates that the destination of that hyperlink is intended to be downloaded and cached. || [[rel-enclosure]] || [http://www.apps.ietf.org/rfc/rfc4287.html RFC4287]&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-home|home]] || &amp;amp;hellip;indicates that the &amp;lt;nowiki&amp;gt;[referenced document]&amp;lt;/nowiki&amp;gt; is the homepage of the site in which the current page appears. || [[rel-home]]&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-payment|payment]] || &amp;amp;hellip;indicates that the destination of the hyperlink provides a way to show or give support (e.g. financial) for the current page|| [[rel-payment]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Metadata namespace declarations ==&lt;br /&gt;
Some rel values have been added to this page in the table about HTML5 features, but no examples, nor an actual specification explicitly stating that the value(s) should be used could be found. They are listed here after the indication of more specific/precise URLs to examples or specifications about them (preferably both). As the URLs to examples/specs have been provided, the values should no longer considered purely theoretical and advised for use.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! summary !! source&lt;br /&gt;
|-&lt;br /&gt;
| schema.DC || a specification of all metadata terms maintained by the Dublin Core Metadata Initiative, with regard to the fifteen terms of the Dublin Core Metadata Element Set already published || [http://www.dublincore.org/documents/dcq-html/ Dublin Core]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| schema.DCTERMS || a specification of all metadata terms maintained by the Dublin Core Metadata Initiative, reflecting the changes described more fully in the 2012 document &amp;quot;Maintenance changes to DCMI Metadata Terms&amp;quot; [http://dublincore.org/usage/decisions/2012/dcterms-changes/] || [http://www.dublincore.org/documents/dcq-html/ Dublin Core]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Notes:&lt;br /&gt;
* Dublin Core. This search may help: [http://www.google.co.uk/search?as_q=rel%3Dschema.*&amp;amp;hl=en&amp;amp;num=10&amp;amp;btnG=Google+Search&amp;amp;as_epq=&amp;amp;as_oq=&amp;amp;as_eq=&amp;amp;lr=&amp;amp;as_ft=i&amp;amp;as_filetype=&amp;amp;as_qdr=all&amp;amp;as_occt=any&amp;amp;as_dt=i&amp;amp;as_sitesearch=http%3A%2F%2Fdublincore.org&amp;amp;as_rights=&amp;amp;safe=images]. &lt;br /&gt;
** '''examples from that search only use invisible &amp;lt;code&amp;gt;&amp;amp;lt;link href&amp;amp;gt;&amp;lt;/code&amp;gt; element'''. At first glance it appears the results from the search show only uses with the invisible &amp;lt;code&amp;gt;&amp;amp;lt;link href&amp;amp;gt;&amp;lt;/code&amp;gt; element which is not ideal for content relationships.  Content relationships should be user visible and thus uses with &amp;lt;code&amp;gt;&amp;amp;lt;a href&amp;amp;gt;&amp;lt;/code&amp;gt; are strongly preferred.  &lt;br /&gt;
*** [http://www.ietf.org/rfc/rfc2731.txt RFC2731] defines &amp;lt;code&amp;gt;rel=&amp;quot;schema.AC&amp;quot;&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;rel=&amp;quot;schema.RC&amp;quot;&amp;lt;/code&amp;gt; with the pattern &amp;lt;code&amp;gt;rel=&amp;quot;schema.PREFIX&amp;quot;&amp;lt;/code&amp;gt; as a syntax for defining namespaces for use in meta[@name], *[@rel], *[@rev] and (as per eRDF) *[@class] attributes. A link to a Dublin Core metadata schema is generally not suitable for end users, so &amp;lt;code&amp;gt;&amp;amp;lt;link href&amp;amp;gt;&amp;lt;/code&amp;gt; appears to be more appropriate than &amp;lt;code&amp;gt;&amp;amp;lt;a href&amp;amp;gt;&amp;lt;/code&amp;gt; for those that use Dublin Core metadata schemas.&lt;br /&gt;
*** The scheme proposed above provides metadata namespace declarations. As described by DCMI specifications, such indications '''cannot''' be provided w/o a suitable namespace. In order to give complete pieces of information, the correct description set must be: &amp;lt;code&amp;gt;&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot;&amp;amp;gt;&amp;lt;/code&amp;gt; (for the namespace declaration, followed by) &amp;lt;code&amp;gt;&amp;amp;lt;meta name=&amp;quot;DCTERMS.&amp;lt;nowiki&amp;gt;[element]&amp;lt;/nowiki&amp;gt;&amp;quot; content=&amp;quot;&amp;lt;nowiki&amp;gt;[element.value]&amp;lt;/nowiki&amp;gt;&amp;quot;&amp;amp;gt;&amp;lt;/code&amp;gt; for related elements. &lt;br /&gt;
**** Note: [http://purl.org/dc/terms/ schema.DCTERMS] is conventionally related to an upgraded elements list than [http://purl.org/dc/elements/1.1/ schema.DC] and should be preferred as rel values. Both are discussed here for subject completeness) &lt;br /&gt;
** '''proposal to use in content currently only theoretical'''. Thus unfortunately the use of Dublin Core in user visible content like &amp;lt;code&amp;gt;&amp;amp;lt;a href&amp;amp;gt;&amp;lt;/code&amp;gt; appears to be strictly theoretical. See [http://microformats.org/discuss/mail/microformats-discuss/2008-January/011445.html microformats-discuss/2008-January/011445.html] for a proposal to use Dublin Core in user visible content.&lt;br /&gt;
*** '''recent improvements'''. DCMI solves some trouble concerning metadata through the ''description set model''. Some of these informations cannot currently be provided in any standard ways other than DC, namely dates, validity and periodicity. Following this public bug report ([https://www.w3.org/Bugs/Public/show_bug.cgi?format=multiple&amp;amp;id=22520]), the correct namespace declaration for DC and DCTERMS metadata are now considered valid HTML code. We '''must''' encourage this practice both for internal usefulness and for shared practices. &lt;br /&gt;
&lt;br /&gt;
* The Dublin Core document [http://dublincore.org/documents/dc-html/ &amp;quot;Expressing Dublin Core metadata using HTML/XHTML meta and link elements&amp;quot;] is a specification for, and gives examples of, both &amp;lt;link rel=&amp;quot;schema.DC&amp;quot; href=&amp;quot;http://purl.org/dc/elements/1.1/&amp;quot;&amp;gt; and &amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot;&amp;gt;. Note that Dublin Core encourages the use of DCTERMS elements over DC. A list of projects which use Dublin Core metadata is maintained [http://dublincore.org/projects/ here].&lt;br /&gt;
* [http://dublincore.org/documents/dc-html/ &amp;quot;Expressing Dublin Core metadata using HTML/XHTML meta and link elements&amp;quot;] also includes examples of &amp;lt;link rel=&amp;quot;DCTERMS.[element]&amp;quot; href=&amp;quot;&amp;quot;&amp;gt;, where [element] = subject, isReferencedBy, creator, and publisher. The &amp;lt;link&amp;gt; tag is used instead of the &amp;lt;meta&amp;gt; tag whenever the content is a URL. (Note that this use is different from, but related to, &amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;&amp;quot;&amp;gt;.) Potentially, ''any'' of the 55 DCTERMS elements could be used in this way, and this could include use in HTML 5.&lt;br /&gt;
** As said before, HTML5 validators now allow the use of &amp;lt;code&amp;gt;&amp;amp;lt;link rel=&amp;quot;schema.DCTERMS&amp;quot; href=&amp;quot;http://purl.org/dc/terms/&amp;quot;&amp;amp;gt;&amp;lt;/code&amp;gt; for namespace declarations.&lt;br /&gt;
&lt;br /&gt;
== brainstorming ==&lt;br /&gt;
Several rel values are being brainstormed as potential microformats and are thus listed here. If you find you have a use for such semantics in real world examples, &amp;lt;strong&amp;gt;consider trying out&amp;lt;/strong&amp;gt; these values and provide feedback on the respective brainstorming page(s) with your results and experiences.&lt;br /&gt;
&lt;br /&gt;
You may list new proposed rel values here, and even better if you can list and link to POSH uses in the wild.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! summary !! brainstormed in and usage in the wild&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-accessibility|accessibility]] || indicate[s] that the destination of that hyperlink contains accessibility information for the current page. || [http://www.brucelawson.co.uk/2009/rel-accessibility/ blog post] which itself uses the rel value in a &amp;amp;lt;link&amp;amp;gt; tag in the head of the document.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-author|author]] || indicate[s] that the destination of that hyperlink represents the author of the current page. Combines with [[rel-me|rel-me]] to chain authorship information. || Google has said it will index rel-Author in this [http://googlewebmastercentral.blogspot.com/2011/06/authorship-markup-and-web-search.html blog post], with further [http://www.google.com/support/webmasters/bin/answer.py?answer=1229920 discussion of the rel-me connection] See also [http://dev.w3.org/html5/spec/Overview.html#link-type-author the HTML5 spec]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-bibliography|bibliography]] || indicate[s] that the destination of that hyperlink is a bibliography for the current page. || [http://microformats.org/discuss/mail/microformats-discuss/2007-October/010863.html mailing list post, 2007-10-15]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-cite|cite]] || indicate[s] that the destination of that hyperlink is an authoritative source or a precedent to the current page. || [[distributed-conversation-brainstorming]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-group|group]] || the referenced document represents a group to which the person represented by the current document belongs || [[group-brainstorming]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-jslicense|jslicense]]&lt;br /&gt;
| Refers to a document with JavaScript source code and license information (also called a [http://www.gnu.org/licenses/javascript-labels.html JavaScript License Web Labels] page). We might want choose a keyword for this that is more general -- there are many situations besides JavaScript in which it is desirable or required by license agreements (e.g., GNU GPL) to make an offer of both the source code and a copy of a license when distributing object code versions of a given work.&lt;br /&gt;
|* Brainstorming page -- thoughts on the name?&lt;br /&gt;
* Ex. [http://www.eff.org EFF.org] (on &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt;) &lt;br /&gt;
* Ex. [http://www.fsf.org FSF.org] (on &amp;lt;code&amp;gt;a&amp;lt;/code&amp;gt;)&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;span id=&amp;quot;longdesc&amp;quot;&amp;gt;[[rel-longdesc|longdesc]]&amp;lt;/span&amp;gt; || Alternative to the img longdesc attribute, for use on visible links || [http://www.google.com/search?q=rel%3D%22longdesc%22 Google search for rel=longdesc in the wild] shows many sources of proposals. Please edit this to list the earliest and perhaps most recent/comprehensive proposal. No known real world POSH usage in the wild yet.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-map|map]] || Link to a map. Possibly embedded within an adr, hCard, geo or hCalendar. Parsers {{may}} attempt to parse the URL if it is a link to a known map site (e.g. Geohash, Google Maps, Multimap) and extract co-ordinates and other useful data. || (to [[User:TobyInk|TobyInk]] by email)&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-member|member]] || the referenced document represents a member of the group represented by the current document || [[group-brainstorming]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-profile|profile]] || indicate[s] that the destination of that hyperlink is a metadata profile (e.g. an [[XMDP]] profile) for the current page or portion thereof || [[xmdp-brainstorming]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-shortlink|shortlink]] || the referenced document represents the current document but with a shorter URL || [http://samj.net/2009/04/introducing-relshort-better-alternative.html blog post]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| vcalendar-parent || link from an event to a containing event || [[User:TobyInk/hcalendar-1.1|hCalendar 1.1 draft]]&lt;br /&gt;
|-&lt;br /&gt;
| vcalendar-child || link from an event to a contained event || [[User:TobyInk/hcalendar-1.1|hCalendar 1.1 draft]]&lt;br /&gt;
|-&lt;br /&gt;
| vcalendar-sibling || link from an event to a related event with the same container || [[User:TobyInk/hcalendar-1.1|hCalendar 1.1 draft]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-status|status]] || the referenced document represents the status (or source of status updates) for the author of this document || [http://monkinetic.com/2009/11/24/status-autodiscovery-relstatus.html blog post]&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== more brainstorming ===&lt;br /&gt;
See also:&lt;br /&gt;
* [[genealogy-brainstorming]] for some thoughts on possible additional values for family relationships (use existing [[XFN]] [[rel-parent|parent]], [[rel-child|child]], [[rel-sibling|sibling]], [[rel-spouse|spouse]], [[rel-kin|kin]] values first though)&lt;br /&gt;
* [[xpn-brainstorming]] for some thoughts on possible additional values for professional relationships (use existing [[XFN]] [[rel-co-worker|co-worker]], [[rel-colleague|colleague]] values first though)&lt;br /&gt;
&lt;br /&gt;
== POSH usage ==&lt;br /&gt;
There are numerous rel values used as [[POSH]], both in the wild, whose origins are not necessarily known, nor are their meanings consistent.  There are also numerous rel values from external proposals of varying degrees of merit.  It is useful to document their existence and summarize their implied meanings/usage intent as research that may be used to perhaps take one or more of them thru the microformats [[process]] if there is both sufficient interest and sufficient in the wild usage.&lt;br /&gt;
&lt;br /&gt;
Note: If a value is missing from this table, it may have either already been promoted by writing it up as a proposal, or demoted by being explicitly dropped. Please check the other tables first before adding to this table.&lt;br /&gt;
&lt;br /&gt;
Note: this list is incomplete, please help complete it from the following sources:&lt;br /&gt;
&lt;br /&gt;
External sources: &lt;br /&gt;
* [http://developer.mozilla.org/about/meta Meta Information in DevMo Docs] (DevMo)&lt;br /&gt;
* [http://wiki.mozilla.org/Microsummaries Microsummary]&lt;br /&gt;
* [http://lachy.id.au/dev/markup/specs/wclr/ Web Communication Link Relationships] (WCLR)&lt;br /&gt;
* [http://www.w3.org/MarkUp/Relationships.html W3C Link Relationship values draft] (LRdraft) - from a draft of the HTML spec circa 1991. &lt;br /&gt;
* [http://www.whatwg.org/specs/web-apps/current-work/multipage/section-links.html#linkTypes HTML5 draft] '''Liable to change'''&lt;br /&gt;
* [http://wiki.foaf-project.org/Autodiscovery FOAF Project Wiki: Autodiscovery] (FOAF)&lt;br /&gt;
* [http://www.apps.ietf.org/rfc/rfc4685.html RFC4685]&lt;br /&gt;
* [http://googlewebmastercentral.blogspot.com/2009/02/specify-your-canonical.html Google Blog]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! summary !! origin !! proposal(s)&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-archive|archive]] || index of archived entries || unknown, perhaps Wordpress open source blogging software || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-archives|archives]] || Provides a link to a collection of records, documents, or other materials of historical interest. ||  || HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|[[rel-author|author]]||see brainstorming above for suggested use by google||unknown || DevMo / HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-canonical|canonical]] || To help search engines disambiguate the same page with multiple representations || Google || [http://googlewebmastercentral.blogspot.com/2009/02/specify-your-canonical.html Google]/[http://www.bing.com/community/blogs/webmaster/archive/2009/02/12/partnering-to-help-solve-duplicate-content-issues.aspx Microsoft]/[http://www.ysearchblog.com/2009/02/12/fighting-duplication-adding-more-arrows-to-your-quiver/ Yahoo!], [http://blog.ask.com/2009/02/ask-is-going-canonical.html Ask Jeeves]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-comment|comment]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-contribution|contribution]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-edituri|EditURI]] &lt;br /&gt;
| Location of the xml-rpc gateway for a Wordpress install that allows external programs to add, edit and delete posts. Used by &amp;quot;[http://codex.wordpress.org/Weblog_Client WordPress blog client]&amp;quot; software for automating posting and updating blog content from your desktop. || Seen in [http://www.wordpress.org/ WordPress], e.g. [http://www.tom-watson.co.uk/].  || Description stubbed in [[rel-edituri]].&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-endorsed|endorsed]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-fan|fan]] || xxxx. || &amp;amp;hellip; || [[hcard-user-profile-authoring]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-feed|feed]] || Gives the address of a syndication feed for the current document. || &amp;amp;hellip; || WCLR/ HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-footnote|footnote]] || Location of the footnote on a link to a footnote. || Markdown preprocessors such as [http://maruku.rubyforge.org/ Maruku] || HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-icon|icon]] || Imports an icon to represent the current document. (Allowed in &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt; only) || [http://dev.w3.org/html5/spec-LC/links.html#rel-icon HTML5] || WCLR/HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-kinetic-stylesheet|kinetic-stylesheet]] || Imports a [http://kssproject.org/ KSS] 'kinetic stylesheet' to bind dynamic behavior to elements || Used in the [http://plone.org Plone] Content Management System || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-lightbox|lightbox]] || Hook - Indicates that following the link will trigger a &amp;quot;lightbox&amp;quot; script (Allowed in &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt; only) || ([http://www.google.co.uk/search?q=rel%3D%22lightbox%22 Google search for rel=lightbox in the wild]) || &amp;amp;hellip; &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-lightbox|lightbox[group_name]]] || Used by lightbox scripts to group different sets of images together.  Images from one group will not appear in another group's lightbox.  See also &amp;quot;lightbox&amp;quot;. || [http://lokeshdhakar.com/projects/lightbox2/#how Lightbox 2] || &amp;amp;hellip; &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-prettyPhoto|prettyPhoto]] || See also &amp;quot;lightbox&amp;quot; || ([http://www.google.fr/search?q=rel%3D%22prettyphoto%22 Google search for rel=&amp;quot;prettyphoto&amp;quot; in the wild]) || &amp;amp;hellip; &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-clearbox|clearbox]] || See also &amp;quot;lightbox&amp;quot; || ([http://www.google.fr/search?q=rel%3D%22clearbox%22 Google search for rel=&amp;quot;clearbox&amp;quot; in the wild]) || &amp;amp;hellip; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-made|made]] || &amp;amp;hellip; || &amp;amp;hellip; || LRdraft&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-meta|meta]] || &amp;amp;hellip; ||  [http://www.w3.org/TR/1999/REC-rdf-syntax-19990222/#transport 1999 W3C RDF syntax REC] || FOAF&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-microsummary|microsummary]]|| &amp;amp;hellip; || &amp;amp;hellip; ||[http://wiki.mozilla.org/Microsummaries Microsummary], be aware of: [[page-summary-formats#Issues_2|microsummary issues]]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-noreferrer|noreferrer]] || indicates that no referrer information is to be leaked when following the link. || [http://dev.w3.org/html5/spec-LC/links.html#rel-noreferrer HTML5] || HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-openid-delegate|openid.delegate]] || &amp;amp;hellip; || ([http://www.google.co.uk/search?q=%22rel%3Dopenid%22 Google search for rel=openid.* in the wild]) || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-openid-server|openid.server]] || &amp;amp;hellip; || ([http://www.google.co.uk/search?q=%22rel%3Dopenid%22 Google search for rel=openid.* in the wild]) || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-permalink|permalink]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-pgpkey|pgpkey]] || (see also rel-publickey) || &amp;amp;hellip; || [http://golem.ph.utexas.edu/~distler/blog/archives/000320.html], [http://golem.ph.utexas.edu/~distler/blog/archives/000325.html]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-pingback|pingback]] || Gives the address of the pingback server that handles pingbacks to the current document. (Allowed in &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt; only) || &amp;amp;hellip; || WCLR/ HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-popover|popover]] || Used by a JS widget to display a large, descriptive tooltip. || [http://twitter.github.com/bootstrap Twitter's Bootstrap] [http://twitter.github.com/bootstrap/javascript.html#popovers Popover.js] || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-prefetch|prefetch]] || Specifies that the target resource should be pre-emptively cached. (Allowed in &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt; only) || &amp;amp;hellip; || HTML5&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-publickey|publickey]] || (see also rel-pgpkey) || &amp;amp;hellip; || [http://rasterweb.net/raster/2002/12/12/20021212072812/]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-publisher|publisher]] || Connecting the website of a publisher with their G+ profile || Google || [http://support.google.com/webmasters/bin/answer.py?answer=1708844]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-referral|referral]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-related|related]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-replies|replies]] || indicates a continued thread || unknown || [http://www.apps.ietf.org/rfc/rfc4685.html RFC4685]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-resource|resource]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-search|search]] || &amp;amp;hellip; || unknown || unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sitemap|sitemap]] || Links to a site map document. || &amp;amp;hellip; || http://www.sitemaps.org/&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sponsor|sponsor]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-tooltip|tooltip]] || Used by a JS widget to display a tooltip similar (though more customizable) to what is shown by browsers if the 'title' attribute is present. || [http://twitter.github.com/bootstrap Twitter's Bootstrap] [http://twitter.github.com/bootstrap/javascript.html#tooltips Tooltip.js] (and likely other JS tools) || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-trackback|trackback]] || &amp;amp;hellip; || unknown, perhaps open source Movable Type blogging software || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-unendorsed|unendorsed]] || (probably redundant to [[rel-nofollow|nofollow]]) || &amp;amp;hellip; || WCLR&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-user|user]] || &amp;amp;hellip; || &amp;amp;hellip; || WCLR&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-wlwmanifest|wlwmanifest]] || Used by &amp;quot;[http://explore.live.com/windows-live-writer Windows Live Writer],&amp;quot; a Microsoft [http://codex.wordpress.org/Weblog_Client blog client] for automating posting and updating blog content from your desktop. || Seen in [http://www.wordpress.org/ WordPress], e.g. [http://www.tom-watson.co.uk/]. Similar values are probably used by other blog content management systems as well. || &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== WCLR ===&lt;br /&gt;
&lt;br /&gt;
The WCLR proposal is described by its author (in e-mail, 2007-09-25) as:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&amp;amp;hellip;now effectively obsolete, since HTML5 and Microformats cover all the worthwhile relationships in that already.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
These are [http://www.whatwg.org/specs/web-apps/current-work/multipage/section-links.html#linkTypes covered by HTML5 already]:&lt;br /&gt;
&lt;br /&gt;
* permalink -&amp;gt; bookmark&lt;br /&gt;
* archive -&amp;gt; archives&lt;br /&gt;
* feed&lt;br /&gt;
* pingback&lt;br /&gt;
* unendorsed -&amp;gt; nofollow&lt;br /&gt;
&lt;br /&gt;
The rest now seem unnecessary.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Nonetheless, there may be some mileage in using them in microformats, at least until HTML5 is widely available.&lt;br /&gt;
&lt;br /&gt;
== HTML5 link type extensions ==&lt;br /&gt;
&lt;br /&gt;
The following values are registered as link type extensions per the [http://www.whatwg.org/specs/web-apps/current-work/multipage/links.html#other-link-types requirements in the WHATWG HTML spec] and the [http://dev.w3.org/html5/spec/links.html#other-link-types requirements in the W3C HTML5 spec]. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Before you register a new value:&lt;br /&gt;
* '''Please check the [[#formats|Formats table]] and DO NOT re-register''' rel values that are already there. Please note that the W3C HTML WG has made a [http://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html Decision] to drop &amp;lt;code&amp;gt;index&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;up&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;first&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;last&amp;lt;/code&amp;gt; from the HTML5 spec itself.&lt;br /&gt;
* '''Please check the [[#dropped|Dropped table]] and DO NOT register''' values that are already there. If you believe a rel value was dropped from another specification without prejudice, please provide link/cite to explicit text/decision stating as such, e.g. the value was merely postponed, or perhaps expected to be spun-out into its own spec from the group developing that specification.&lt;br /&gt;
&lt;br /&gt;
Note that entries in the [[#formats|Formats table]] and entries that are already in HTML5 as built-in keywords are also considered extensions with the &amp;quot;Ratified&amp;quot; status.&lt;br /&gt;
&lt;br /&gt;
Please make sure that registrations added here have all the required data filled in ''including'':&lt;br /&gt;
* &amp;quot;Effect on link&amp;quot;&lt;br /&gt;
* &amp;quot;Effect on a and area&amp;quot; and &lt;br /&gt;
* a link to a spec that documents the keyword ''as an HTML &amp;lt;code&amp;gt;rel&amp;lt;/code&amp;gt; keyword''. (A spec that merely defines the file format of the link target but does not define the &amp;lt;code&amp;gt;rel&amp;lt;/code&amp;gt; keyword for use in HTML is not the kind of spec that is being required here.)&lt;br /&gt;
&lt;br /&gt;
Entries lacking any of the above required data will likely be removed. &lt;br /&gt;
&lt;br /&gt;
Changes to this registry may not be reflected in validators in real time.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! Keyword&lt;br /&gt;
! Effect on &amp;lt;code&amp;gt;link&amp;lt;/code&amp;gt;&lt;br /&gt;
! Effect on &amp;lt;code&amp;gt;a&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;area&amp;lt;/code&amp;gt;&lt;br /&gt;
! Brief description&lt;br /&gt;
! Link to specification&lt;br /&gt;
! Synonyms&lt;br /&gt;
! Status&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-apple-touch-icon|apple-touch-icon]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specify a Webpage Icon for a “Web Clip”, or “touch icon”, for mobile devices (not limited to Apple devices).&lt;br /&gt;
| [http://developer.apple.com/library/safari/#documentation/appleapplications/reference/safariwebcontent/configuringwebapplications/configuringwebapplications.html Apple's Safari Web Content Guide]&lt;br /&gt;
| probably redundant with rel=icon&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-apple-touch-icon-precomposed|apple-touch-icon-precomposed]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specify a Webpage Icon for a “Web Clip”, or “touch icon”, for mobile devices (not limited to Apple devices).&lt;br /&gt;
| [http://developer.apple.com/library/safari/#documentation/appleapplications/reference/safariwebcontent/configuringwebapplications/configuringwebapplications.html Apple's Safari Web Content Guide]&lt;br /&gt;
| probably redundant with rel=icon&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-apple-touch-startup-image|apple-touch-startup-image]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specify a splashscreen for Web apps on iOS Safari &lt;br /&gt;
| [http://developer.apple.com/library/safari/#documentation/appleapplications/reference/safariwebcontent/configuringwebapplications/configuringwebapplications.html Apple's Safari Web Content Guide]&lt;br /&gt;
| maybe redundant with rel=icon with the sizes attribute?&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-attachment|attachment]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| The resource linked to is &amp;quot;attached&amp;quot; to this document, similar to email attachments. Used in WordPress.&lt;br /&gt;
| No formal specification&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-canonical|canonical]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specifies the canonical URL for the current document in order to help avoid duplicate content.&lt;br /&gt;
| [http://en.wikipedia.org/wiki/Canonical_meta_tag Canonical meta tag] [http://www.Google.com/support/webmasters/bin/answer.py?answer=139066#2 Canonicalization at Google Webmaster Central] [http://www.Bing.com/community/site_blogs/b/webmaster/archive/2009/02/12/partnering-to-help-solve-duplicate-content-issues.aspx Microsoft Webmaster Center] [http://www.YSearchBlog.com/2009/02/12/fighting-duplication-adding-more-arrows-to-your-quiver/ Yahoo! Search Blog]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-category|category]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to a category assigned to the current document or post. Implemented by WordPress for indicating a relation between a blog post and a category.&lt;br /&gt;
| [[rel-category]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-component|component]] &lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specify an HTML document that is treated as a component of this document.&lt;br /&gt;
| [https://dvcs.w3.org/hg/webcomponents/raw-file/tip/spec/components/index.html Web Components]&lt;br /&gt;
| &lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-disclosure|disclosure]]&lt;br /&gt;
| Not allowed&lt;br /&gt;
| External Resource&lt;br /&gt;
| The 'disclosure' Link Relation Type designates a list of patent disclosures or a particular patent disclosure itself made with respect to material for which such relation type is specified.&lt;br /&gt;
| [http://tools.ietf.org/html/draft-yevstifeyev-disclosure-relation The 'disclosure' Link Relation Type]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-discussion|discussion]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to discussion of the current document or post.&lt;br /&gt;
| [[rel-discussion]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-dns-prefetch|dns-prefetch]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Tells the browser to perform dns lookup for host names ahead of use.&lt;br /&gt;
| [https://developer.mozilla.org/En/Controlling_DNS_prefetching Mozilla documentation] [http://dev.chromium.org/developers/design-documents/dns-prefetching Google documentation]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-edituri|EditURI]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| A blogging auto discovery value, commonly used by WordPress&lt;br /&gt;
| [http://bitworking.org/projects/atom/draft-gregorio-09.html#Edit AtomAPI]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-entry-content|entry-content]]&lt;br /&gt;
| Not allowed&lt;br /&gt;
| External Resource&lt;br /&gt;
| Indicates that the referenced document is an alternative display source for an Internet Explorer Web Slice.&lt;br /&gt;
| [http://msdn.microsoft.com/en-us/library/cc304073(VS.85).aspx#_alternative Web Slice format specification 0.9]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-external|external]]&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Indicates that the referenced document is not part of the same site as the current document.&lt;br /&gt;
| [[rel-external]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-home|home]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to the top level document for the current document. It can be combined with 'alternate' to indicate a feed for the site of the current page.&lt;br /&gt;
| [[rel-home]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-hub|hub]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to a hub that enables registration for notification of updates to the current page.&lt;br /&gt;
| [http://pubsubhubbub.googlecode.com/svn/trunk/pubsubhubbub-core-0.3.html#discovery PubSubHubbub Spec]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-in-reply-to|in-reply-to]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to an original post that the current page is a comment on or reply to.&lt;br /&gt;
| [[rel-in-reply-to]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-index|index]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to a document providing a list of topics with pointers that pertain to the current document.&lt;br /&gt;
| [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-issues|issues]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to issues regarding the current document or specification.&lt;br /&gt;
| [[rel-discussion]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-lightbox|lightbox]]&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Img Pop-Up&lt;br /&gt;
| Images with this attribute are displayed in a larger way than embedded in a website (or how you specified it) when clicked (e.g. with installed &amp;quot;Lightbox 2&amp;quot;-Plugin). When adding [group] to rel=&amp;quot;lightbox&amp;quot; all images get a clickable button for next/prev; insert into &amp;lt;code&amp;gt;&amp;amp;lt;a rel=&amp;quot;lightbox[group]&amp;quot;&amp;gt;&amp;amp;lt;img src=&amp;quot;http:example.com/img.jpg&amp;quot;&amp;gt;&amp;amp;lt;/a&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
| [http://lokeshdhakar.com/projects/lightbox2/ Lightbox 2] (needs actual specification to be kept in this list, this link is just documentation of one implementation)&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-meta|meta]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| External metadata about the HTML document&lt;br /&gt;
| [http://www.w3.org/TR/rdf-syntax-grammar/#section-rdf-in-HTML W3C's RDF/XML Syntax Specification]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-openid.delegate|openid.delegate]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| When the page that contains the link is used as an OpenID indentifier, the relying party perform sOpenID 1.1 authentication with the link target as the identifier instead. &lt;br /&gt;
| [http://openid.net/specs/openid-authentication-1_1.html#delegating_authentication OpenID Authentication 1.1]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-openid.server|openid.server]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| The OpenID server for the relying party to contact for OpenID 1.1 authentication&lt;br /&gt;
| [http://openid.net/specs/openid-authentication-1_1.html#anchor4 OpenID Authentication 1.1]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-openid2.local_id|openid2.local_id]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| When the page that contains the link is used as an OpenID indentifier, the relying party perform sOpenID 2.0 authentication with the link target as the identifier instead. &lt;br /&gt;
| [http://openid.net/specs/openid-authentication-2_0.html#rfc.section.7.3.3 OpenID Authentication 2.0]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-openid2.provider|openid2.provider]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| The OpenID server for the relying party to contact for OpenID 2.0 authentication&lt;br /&gt;
| [http://openid.net/specs/openid-authentication-2_0.html#rfc.section.7.3.3 OpenID Authentication 2.0]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-p3pv1|p3pv1]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| References a machine-readable privacy policy description in the P3P format&lt;br /&gt;
| [http://www.w3.org/TR/P3P/#syntax_link P3P spec]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-pgpkey|pgpkey]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Associates a PGP key with a Web page so that the Web page URL can be used as the commenter's URL in PGP-signed blog comments and the blogging system receiving the comment can fetch the key and verify the signature as belonging to the owner of the URL.&lt;br /&gt;
| [http://golem.ph.utexas.edu/~distler/blog/archives/000320.html PGP-Signed Comments]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-pingback|pingback]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| gives the address of the pingback server that handles pingbacks to the current document&lt;br /&gt;
| [http://www.hixie.ch/specs/pingback/pingback Pingback]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-prerender|prerender]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Prerenders the Web page targeted by the link including running it scripts.&lt;br /&gt;
| [http://dev.chromium.org/developers/design-documents/prerender Chrome Prerendering]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-profile|profile]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Contextual External Resource &lt;br /&gt;
| indicate[s] that the destination of that hyperlink is a metadata profile (e.g. an [[XMDP]] profile) for the current page or portion thereof. See also [[xmdp-brainstorming]].&lt;br /&gt;
| [http://microformats.org/wiki/rel-profile rel-profile]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-rendition|rendition]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| External Resource&lt;br /&gt;
| Indicates some example rendering, interpretation, or depiction of the source. User agents may choose to execute, display, or render the target in-place; or navigate to the target.&lt;br /&gt;
| [http://www.globalmentor.com/specs/html-rel-rendition/ HTML rel rendition]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-service|service]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Atom Publishing Protocol editing service autodiscovery.&lt;br /&gt;
| [http://wiki.whatwg.org/wiki/ServiceRelExtension Documentation on the WHATWG wiki]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-shortlink|shortlink]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specifies the preferred shortened URL for the page.&lt;br /&gt;
| [http://code.google.com/p/shortlink/wiki/Specification shortlink spec]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sidebar|sidebar]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Indicates that the referenced document is intended to be shown in a secondary browsing context.&lt;br /&gt;
| [[rel-sidebar]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sitemap|sitemap]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Provides a link to an XML document describing the layout of the site.&lt;br /&gt;
| [[rel-sitemap]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-syndication|syndication]]&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Hyperlink&lt;br /&gt;
| Refers to a page which is a syndicated copy of the current page.&lt;br /&gt;
| [[rel-syndication]]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-timesheet|timesheet]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Applies a timesheet to the document.&lt;br /&gt;
| [http://www.w3.org/TR/timesheets/#smilTimesheetsNS-Elements-Timesheet non-normative section in the Timesheet spec]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-widget|widget]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| External Resource&lt;br /&gt;
| Autodiscovery for W3C widgets&lt;br /&gt;
| [http://dev.w3.org/2006/waf/widgets/Overview.html#linking-to-a-widget-package-from-a-html- non-normative section in the Widget packaging spec]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-wlwmanifest|wlwmanifest]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Windows Live Writer manifest autodiscovery&lt;br /&gt;
| [http://msdn.microsoft.com/en-us/library/bb463263.aspx documentation on MSDN]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-image_src|image_src]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Specify a Webpage Icon for use by Facebook, Yahoo, Digg, etc.&lt;br /&gt;
| Unknown, but see for instance [http://www.niallkennedy.com/blog/2009/03/enhanced-social-share.html this]&lt;br /&gt;
| probably redundant with rel=icon&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-cmis-acl|http://docs.oasis-open.org/ns/cmis/link/200908/acl]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| External Resource&lt;br /&gt;
| Identifies the resource containing a CMIS ACL document for the link context&lt;br /&gt;
| [http://docs.oasis-open.org/cmis/CMIS/v1.0/cs01/cmis-spec-v1.0.html#_Toc243905525 CMIS 1.0, Section 3.4.3.4]&lt;br /&gt;
| &lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-stylesheet/less|stylesheet/less]]&lt;br /&gt;
| External Resource&lt;br /&gt;
| Not allowed&lt;br /&gt;
| Less CSS framework stylesheets.&lt;br /&gt;
| [http://lesscss.org/#-client-side-usage Less CSS usage]&lt;br /&gt;
|&lt;br /&gt;
| proposed&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Use with HTTP Link Header ==&lt;br /&gt;
You can also use any of the rel values (that are allowed for link elements) with HTTP Link Headers, &lt;br /&gt;
&lt;br /&gt;
Example: returning a Javascript file with a license (since JS itself has no way to indicate a license)&lt;br /&gt;
&amp;lt;source lang=text&amp;gt;&lt;br /&gt;
Link: &amp;lt;http://creativecommons.org/publicdomain/zero/1.0/&amp;gt;; rel=&amp;quot;license&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For multiple licenses (e.g. CC-SA and GPL), simply use multiple &amp;lt;code&amp;gt;Link:&amp;lt;/code&amp;gt; headers.&lt;br /&gt;
&amp;lt;source lang=text&amp;gt;&lt;br /&gt;
Link: &amp;lt;http://creativecommons.org/licenses/by-sa/3.0/&amp;gt;; rel=&amp;quot;license&amp;quot;&lt;br /&gt;
Link: &amp;lt;http://www.gnu.org/licenses/gpl.html&amp;gt;; rel=&amp;quot;license&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Example: similarly, linking to a copyright statement for an image:&lt;br /&gt;
&amp;lt;source lang=text&amp;gt;&lt;br /&gt;
Link: &amp;lt;http://example.org/copyright.html&amp;gt;; rel=&amp;quot;copyright&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
or providing a brief inline copyright statement:&lt;br /&gt;
&amp;lt;source lang=text&amp;gt;&lt;br /&gt;
Link: &amp;lt;data:text/plain;charset=utf-8,Copyright 2013 ExampleCo, All Rights Reserved.&amp;gt;; rel=&amp;quot;copyright&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== non HTML rel values ==&lt;br /&gt;
There are markup languages other than HTML that also have a rel attribute, often based upon the HTML rel attribute.&lt;br /&gt;
It is useful to document some of these other languages and their rel values for both reference purposes, and to provide  background research for the possible development and re-use of these values in HTML, as [[poshformats]] or [[microformats]]&lt;br /&gt;
&lt;br /&gt;
Sources:&lt;br /&gt;
* [[Atom]] [[RFC4287]] specification. &lt;br /&gt;
* See http://www.iana.org/assignments/link-relations.html for more.&lt;br /&gt;
* See [http://amundsen.com/media-types/maze/format/#link-relations Maze+XML]&lt;br /&gt;
* See [http://amundsen.com/media-types/collection/format/#link-relations Collection+JSON]&lt;br /&gt;
* See [http://www.opensearch.org/Specifications/OpenSearch/1.1#Url_rel_values OpenSearch]&lt;br /&gt;
* See [http://tools.ietf.org/html/rfc6861 The Create-Form and Edit-Form Link Relations (RFC6861)]&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! summary&amp;lt;br /&amp;gt;(from the relevant specification where possible)) !! defining specification&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| self&lt;br /&gt;
| From http://www.ietf.org/rfc/rfc4287.txt : &amp;lt;blockquote&amp;gt;The value &amp;quot;self&amp;quot; signifies that the IRI in the value of the href attribute identifies a resource equivalent to the containing element.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
| [[Atom]] http://www.ietf.org/rfc/rfc4287.txt&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| http://gdata.youtube.com/schemas/2007#in-reply-to || See http://code.google.com/apis/youtube/2.0/developers_guide_protocol_comments.html || YouTube extension to Atom&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| collection || Refers to a resource which represents a collection of which the current resource is a member.&lt;br /&gt;
&lt;br /&gt;
When used in the Maze+XML media type, the associated URI returns the available collection of mazes.&lt;br /&gt;
  || Maze+XML, Collection+JSON, OpenSearch&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| east || Refers to a resource to the &amp;quot;east&amp;quot; of the current resource.&lt;br /&gt;
&lt;br /&gt;
When used in the Maze+XML media type, the associated URI points to a neighboring cell resource to the east in the active maze.&lt;br /&gt;
&lt;br /&gt;
 || Maze+XML&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| exit || Refers to a resource that represents the exit or end of the current client actvity or process.&lt;br /&gt;
&lt;br /&gt;
When used in the Maze+XML media type, the associated URI points to the final exit resource of the active maze.&lt;br /&gt;
&lt;br /&gt;
 || Maze+XML&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| north || Refers to a resource that is &amp;quot;north&amp;quot; of the current resource.&lt;br /&gt;
&lt;br /&gt;
When used in the Maze+XML media type, the associated URI points to a neighboring cell resource to the north in the active maze.&lt;br /&gt;
&lt;br /&gt;
 || Maze+XML&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| south || Refers to a resource that is &amp;quot;south&amp;quot; of the current resource.&lt;br /&gt;
&lt;br /&gt;
When used in the Maze+XML media type, the associated URI points to a neighboring cell resource to the south in the active maze.&lt;br /&gt;
&lt;br /&gt;
 || Maze+XML&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-via|via]] || Identifies a resource that is the source of the information in the context. ||  Atom 1.0 Syndication format (RFC 4287)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| west || Refers to a resource that is &amp;quot;west&amp;quot; of the current resource.&lt;br /&gt;
&lt;br /&gt;
When used in the Maze+XML media type, the associated URI points to a neighboring cell resource to the west in the active maze.&lt;br /&gt;
&lt;br /&gt;
 || Maze+XML&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| item || The target IRI points to a resource that is a member of a collection represented by the context IRI. || Collection+JSON&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| create-form || When included in a resource, the &amp;quot;create-form&amp;quot; link relation MAY identify a target resource that represents the form to append a new member to the link context. || See [http://tools.ietf.org/html/rfc6861 The Create-Form and Edit-Form Link Relations (RFC6861)]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| edit-form || When included in a resource, the &amp;quot;edit-form&amp;quot; link relation identifies a target resource that represents the form for editing associated resource. || See [http://tools.ietf.org/html/rfc6861 The Create-Form and Edit-Form Link Relations (RFC6861)]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| lightframe || Opens the target in a lightbox. On inclusion it provides a simple target the lightframe and loads the content in a lightbox effect || Lightbox&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| superbox[image] || jQuery Superbox! is a script which allows you display windows with the lightbox effect. || superbox&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| wp-video-lightbox || wp-video-lightbox! is a rel to anchor tag script display videos with the lightbox effect. || wp-video-lightbox&lt;br /&gt;
|-&lt;br /&gt;
| ... || ... || ...&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== dropped ==&lt;br /&gt;
The following rel values were in earlier version(s) of specification(s) and it is presumed by their absence from the most recent version of the respective specification(s) that they have been deprecated or obsoleted. &lt;br /&gt;
&lt;br /&gt;
In general, you {{should not}} use any dropped values.&lt;br /&gt;
&lt;br /&gt;
If any such values have been superceded by standard values (see the first table on this page), then you {{must not}} use the dropped versions.&lt;br /&gt;
&lt;br /&gt;
In particular:&lt;br /&gt;
* if a rel value was in a draft and is missing (without explanation) from the final spec, or&lt;br /&gt;
* if a rel value was in a previous version of and is missing (without explanation) from an update to the specification (even a draft update)&lt;br /&gt;
&lt;br /&gt;
Then absent any other information or explanation, it is presumed that the group/editors working on that specification decided to explicitly drop it (either in development, or in the updated version) and thus it should be obsoleted (not re-registered). &lt;br /&gt;
&lt;br /&gt;
If you wish to add them, please research &amp;lt;em&amp;gt;why&amp;lt;/em&amp;gt; such values were omitted from latter specifications before doing so. If you do discover the reasoning, please add a short statement or link to thereof into the appropriate place in the following table.&lt;br /&gt;
&lt;br /&gt;
If there is more data, e.g. a link to an email of discussion of the spec development that explains ''why'' the rel value was dropped, and it explicitly states, e.g. it was without prejudice, or merely post-poned, or perhaps expected to be spun-out into its spec (or some other explicit positive reason), then it makes to link/cite that explicit text as part of a proposal.&lt;br /&gt;
&lt;br /&gt;
Sources: &lt;br /&gt;
* [http://www.w3.org/MarkUp/html3/ HTML3] (HTML3) / has been superceded by [http://www.w3.org/MarkUp/Wilbur/ HTML 3.2] - which itself has been superceded by [http://www.w3.org/TR/REC-html40 HTML 4.0] - which itself has been updated by [http://w3.org/TR/html401 HTML 4.01], commonly referred to as &amp;quot;HTML 4&amp;quot; in this wiki and other places.)&lt;br /&gt;
* [http://www.w3.org/TR/relations.html Proposed HTML 4.0 link types] (HTML4dropped) - obsoleted/superceded by the HTML 4.0 Recommendation.  Any values that were in the &amp;quot;Proposed HTML 4.0 link types&amp;quot; document but didn't make it into the HTML 4.0 Recommendation were thus explicitly dropped and should be avoided.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! summary !! defining specification !! why dropped &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|[[rel-banner|banner]]||Was used to reference another document to be used as banner for this document (i.e. a form of &amp;quot;include&amp;quot; statement).|| HTML3 ||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-begin|begin]] || identifies the author-defined start of a sequence of documents of which the current document is a node.&lt;br /&gt;
 || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-biblioentry|biblioentry]] || identifies a bibliographic entry || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-bibliography|bibliography]] || identifies a bibliography || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-child|child]] (obsolete/superceded) || the target document is a hierarchical child, or subdocument, of the current document|| HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-citation|citation]] || the target is a bibliographic citation || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-collection|collection]] || the target document is an collection that contains the current document || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-definition|definition]] || identifies a definition of a term || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-disclaimer|disclaimer]] || identifies a hypertext link to a legal disclaimer || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-editor|editor]] || identifies a hypertext link to an editor || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-end|end]] || identifies the author-defined end of a sequence of documents of which the current document is a node. || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-footnote|footnote]] || the anchor is a footnote marker and the target is a footnote || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-navigate|navigate]] || the target document contains information such as a image map that will help users to gain a sense of how and where to found information || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-origin|origin]] || synonym for &amp;lt;code&amp;gt;top&amp;lt;/code&amp;gt; || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-parent|parent]] (obsolete/superceded) || the target document is the hierarchical parent, or container, of the current document|| HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-pointer|pointer]] || the target is a pointer to the real target. This value can be used by a user agent to perform a pre-fetch of the specified target for evaluation until the real target is reached || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-publisher|publisher]] || identifies a hypertext link to a publisher || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-sibling|sibling]] (obsolete/superceded) || the target document is a child of a common parent, or a hierarchical peer of the current document|| HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-top|top]] || the target document is the logical top node of the tree (see also &amp;lt;code&amp;gt;begin&amp;lt;/code&amp;gt;) || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-trademark|trademark]] || identifies a hypertext link to a trademark notice || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-translation|translation]] || the target is a translation to another language || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-urc|urc]] || identifies a Universal Resource Citation || HTML4dropped||unknown&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== dropped without prejudice ==&lt;br /&gt;
In one known instance (from HTML4 to HTML5), some rel values were in an earlier version of a specification (or a proposal) and were dropped from a latter (draft) version, and it was noted that these values were dropped with the intent that they could still be proposed in a registry and thus they explicitly were not deprecated or obsoleted. This section documents such values as separate from the [[#dropped|dropped]] section.&lt;br /&gt;
&lt;br /&gt;
In general, you {{should not}} use any dropped values.&lt;br /&gt;
&lt;br /&gt;
If any such values have been superceded by standard values (see the first table on this page), then you {{must not}} use the dropped versions.&lt;br /&gt;
&lt;br /&gt;
Rel values that were dropped without prejudice from a specification will be considered similar to new values that have never been specified.&lt;br /&gt;
&lt;br /&gt;
If you know of additional rel values that were dropped without prejudice from an update to a specification, please cite a URL and quote from the group developing the specification that officially states from that group that the dropping of the values was done without prejudice, or equivalent statement (such as explicit allowance of external registration, proposal, and/or development).&lt;br /&gt;
&lt;br /&gt;
This table serves a historical purpose. If you wish to propose a value from this table, please copy it and leave it in place.&lt;br /&gt;
&lt;br /&gt;
Sources: &lt;br /&gt;
* Several rel values were [http://www.w3.org/Bugs/Public/show_bug.cgi?id=7475#c15 explicitly dropped from HTML5]. Per: [http://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html Issue 118 Decision] ('''emphasis''' added): &amp;lt;blockquote&amp;gt;&amp;lt;p&amp;gt;&amp;quot;The final proposal argues for the removal of some relation values, to wit, it suggests removal of '''index, up, first and last'''. It was pointed out in survey comments that these relations are already registered in the IANA link relation registry. Presumably, '''these relations could also be entered in whatever other registry or registries HTML5 adopts for this purpose'''.&amp;lt;/p&amp;gt;...&amp;lt;p&amp;gt;&amp;quot;Next Steps&amp;lt;/p&amp;gt;...&amp;lt;p&amp;gt;&amp;quot;Since the relations to be removed are already registered at the IANA link relation registry, no further action is needed to include them there. WG members are '''free to register or record these relations elsehwere''' [sic], as well.&amp;quot;&amp;lt;/p&amp;gt;&amp;lt;/blockquote&amp;gt; &lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value&lt;br /&gt;
! summary&lt;br /&gt;
! defining specification&lt;br /&gt;
! why dropped &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-first|first]]&lt;br /&gt;
| synonym for &amp;lt;code&amp;gt;begin&amp;lt;/code&amp;gt;&lt;br /&gt;
| HTML4dropped - never in an official spec&lt;br /&gt;
| [http://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html Explicitly dropped from HTML5 interim draft yet permitted for external registry]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-index|index]]&lt;br /&gt;
| Refers to a document providing an index for the current document.&lt;br /&gt;
| was in [http://www.w3.org/TR/html4/types.html#h-6.12 HTML4]&lt;br /&gt;
| [http://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html Explicitly dropped from HTML5 interim draft yet permitted for external registry]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-last|last]]&lt;br /&gt;
| synonym for &amp;lt;code&amp;gt;end&amp;lt;/code&amp;gt;&lt;br /&gt;
| HTML4dropped - never in an official spec&lt;br /&gt;
| [http://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html Explicitly dropped from HTML5 interim draft yet permitted for external registry]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
| [[rel-up|up]]&lt;br /&gt;
|When the document forms part of a hierarchy, this link references the immediate parent of the current document.&lt;br /&gt;
| was in [http://www.w3.org/MarkUp/html3/dochead.html HTML3] - but [http://www.w3.org/TR/html401/types.html#type-links dropped in HTML4]&lt;br /&gt;
| [http://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html Explicitly dropped from HTML5 interim draft yet permitted for external registry]&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
See related [http://dev.w3.org/html5/spec/links.html#linkTypes HTML5: Link types] for existing HTML5 specified rel values.&lt;br /&gt;
&lt;br /&gt;
== rejected ==&lt;br /&gt;
Some rel values have been proposed and rejected.  They are listed here to make that explicit.  Authors {{must not}} use rejected rel values.&lt;br /&gt;
&lt;br /&gt;
Source: [[rejected-formats]].&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &lt;br /&gt;
! rel value !! origin / proposal !! why rejected &lt;br /&gt;
|-&lt;br /&gt;
| [[rel-logo|logo]]&lt;br /&gt;
| [http://relogo.org Relogo.org]&lt;br /&gt;
| [[rejected-formats#Logo]]&lt;br /&gt;
|-&lt;br /&gt;
|[[rel-pavatar|pavatar]] || [http://pavatar.com/ pavatar] || [[rejected-formats#Pavatar]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== tools ==&lt;br /&gt;
See [[implementations]].&lt;br /&gt;
&lt;br /&gt;
== addtional external research ==&lt;br /&gt;
Here are some additional historical references to the development or rel-values which may be useful when researching values, especially why specific values may have been proposed but abandoned.&lt;br /&gt;
* 1996-06-07 [http://www.w3.org/MarkUp/draft-ietf-html-relrev-00.txt Hypertext links in HTML] (copies: [http://ftp.ics.uci.edu/pub/ietf/html/draft-ietf-html-relrev-00.txt ftp.ics.uci.edu])&lt;br /&gt;
* 1996-11-13 [http://www.w3.org/Architecture/NOTE-link Describing and Linking Web Resources] &lt;br /&gt;
* 1997-01-23 [http://lists.gnu.org/archive/html/lynx-dev/1997-01/msg00537.html LYNX-DEV Lynx and the LINK tag] &lt;br /&gt;
* 1997-01-24 [http://lists.w3.org/Archives/Public/w3c-sgml-wg/1997Jan/0357.html Taxonomy list] &lt;br /&gt;
* 1997-03-28 [http://www.w3.org/TR/WD-htmllink-970328 W3C Working Draft: Hypertext Links and Meta Information in HTML]&lt;br /&gt;
 &lt;br /&gt;
=== previous attempts at documenting ===&lt;br /&gt;
There have been previous attempts at documenting known rel values, most of which fell out of date due to being dependent on a single author maintaining them. They're listed here purely for historical reasons, and are not sufficient to be references of their own (since they're just individual curations of other references)&lt;br /&gt;
* [http://fantasai.tripod.com/qref/Appendix/LinkTypes/ltdef.html Link Type Definitions Glossary] by fantasai&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
== related ==&lt;br /&gt;
{{rel-related-pages}}&lt;br /&gt;
* [[elemental-microformats]]&lt;br /&gt;
* [[existing-rev-values]]&lt;br /&gt;
* [[existing-class-names]]&lt;br /&gt;
&lt;br /&gt;
== copyright ==&lt;br /&gt;
&lt;br /&gt;
{{cc-pd-license}}&lt;/div&gt;</summary>
		<author><name>Andy sky</name></author>
	</entry>
</feed>