<?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=Prlbr</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=Prlbr"/>
	<link rel="alternate" type="text/html" href="https://microformats.org/wiki/Special:Contributions/Prlbr"/>
	<updated>2026-05-06T05:14:09Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.38.4</generator>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=rel-up&amp;diff=66865</id>
		<title>rel-up</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=rel-up&amp;diff=66865"/>
		<updated>2018-06-23T13:44:41Z</updated>

		<summary type="html">&lt;p&gt;Prlbr: /* Use cases */ fixed Unicode name for ↑&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{stub}}&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
Refers to a parent document in a hierarchy of documents.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
A page (&amp;lt;nowiki&amp;gt;https://prlbr.de/galerie/14/am-pranger/&amp;lt;/nowiki&amp;gt;) in a photo gallery showcases a photo. The page defines multiple link relations which refer to the&lt;br /&gt;
&lt;br /&gt;
* '''next''' page which contains the next photo from the gallery&lt;br /&gt;
* '''prev'''ious page from the gallery&lt;br /&gt;
*  parent page using '''up''', which shows previews of many photos as thumbnails including the current one and includes links to their corresponding pages.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;link rel='next' href='/galerie/14/mustergatte/'&amp;gt;&lt;br /&gt;
&amp;lt;link rel='prev' href='/galerie/14/linie-1/'&amp;gt;&lt;br /&gt;
&amp;lt;link rel='up' href='/galerie/seite-6'&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
''next'' and ''prev'' relate to documents on the same hierarchy level while ''up'' moves one level up.&lt;br /&gt;
&lt;br /&gt;
== Use cases ==&lt;br /&gt;
&lt;br /&gt;
Authors can make a hierarchical relationship discoverable, for example between&lt;br /&gt;
&lt;br /&gt;
* a single photo page and a gallery overview page&lt;br /&gt;
* a forum thread and a forum&lt;br /&gt;
* the archive page for a single month in a blog and the archive page for the whole year&lt;br /&gt;
* in software documentation a page about a class and its parent class&lt;br /&gt;
&lt;br /&gt;
This explicit knowledge can improve navigation for users of navigation bars, either browser extension or built-in. Multiple such bars exist and existed in the past. In 2018, at least the SeaMonkey, iCab and Lynx browsers support ''rel=up'' natively. Opera did in the past. Add-ons for previous Firefox versions which used ''rel=up'' included Link Widgets by cdn and Stephen Clavering, Site navigation bar by Klaus Bolwin, cmSiteNavigation Toolbar by Christoph A. Mueller. A LinkBar Add-on for Internet Explorer was available. See &amp;lt;nowiki&amp;gt;http://matthias.gutfeldt.ch/translation/LINK/addendum.html&amp;lt;/nowiki&amp;gt; for exotic/historical examples.&lt;br /&gt;
&lt;br /&gt;
Assistive technology (does any today?) could communicate better what a link such as the following means, for example by reading &amp;quot;link to ''parent page'', upwards arrow&amp;quot; instead of just &amp;quot;link, upwards arrow&amp;quot;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&amp;lt;a rel='up' href='..'&amp;gt;↑&amp;lt;/a&amp;gt;&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the absence of native support for ''rel=up'' and similar link relations (''next'', ''prev'', …) in assistive technology it’s possible to translate the ''rel'' values to a textual description with the ''aria-label'' attribute automatically using a script.&lt;br /&gt;
&lt;br /&gt;
Hierarchical information allows for better sitemaps to be generated automatically by web spiders.&lt;br /&gt;
* Web spiders tend to prefer an explicit [[sitemap]] for that use-case. [[User:Tantek|Tantek]] 22:18, 20 June 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Standards ==&lt;br /&gt;
&lt;br /&gt;
The link relation ''up'' is recognized in standards:&lt;br /&gt;
&lt;br /&gt;
* IANA link relations registry (&amp;lt;nowiki&amp;gt;https://www.iana.org/assignments/link-relations/link-relations.xhtml&amp;lt;/nowiki&amp;gt;)&lt;br /&gt;
* XHTML vocabulary (&amp;lt;nowiki&amp;gt;https://www.w3.org/1999/xhtml/vocab#up&amp;lt;/nowiki&amp;gt;)&lt;br /&gt;
** and hence XHTML+RDFa Initial Context (&amp;lt;nowiki&amp;gt;https://www.w3.org/2011/rdfa-context/xhtml-rdfa-1.1&amp;lt;/nowiki&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;discussion&amp;quot;&amp;gt;&lt;br /&gt;
* This is good reason to reserve the rel value of &amp;quot;up&amp;quot;, but insufficient to make it a standard, since those registries do not require use-cases or implementation, both of which are essential to having a useful standard. - [[User:Tantek|Tantek]] 22:18, 20 June 2018 (UTC)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
&lt;br /&gt;
Historically ''up'' has also been in HTML3 (&amp;lt;nowiki&amp;gt;https://www.w3.org/MarkUp/html3/dochead.html&amp;lt;/nowiki&amp;gt;), but could not be found in later editions of HTML, until its use in practice was recognized during the development of HTML5 (&amp;lt;nowiki&amp;gt;https://blog.whatwg.org/the-road-to-html-5-link-relations#rel-first&amp;lt;/nowiki&amp;gt;) and hence found its way into HTML5 Working Drafts (&amp;lt;nowiki&amp;gt;https://www.w3.org/TR/2011/WD-html5-20110113/links.html#link-type-up&amp;lt;/nowiki&amp;gt;). Then the link relation ''up'' was dropped from HTML5 without prejudice (&amp;lt;nowiki&amp;gt;https://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html&amp;lt;/nowiki&amp;gt;) for adding it to other future link relation registries – e.g. this [[existing-rel-values|this microformats WIKI]] – and recognizing that it is a defined standard anyway due to the IANA registry:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote cite=&amp;quot;https://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html&amp;quot;&amp;gt;Finally, it was noted that the link relations being dropped are already defined in the IANA registry and could be defined in future registries;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
An argument against that decision was that dropping ''up'' from the HTML standard would cause content to show up as invalid in validators and would stop people from using it, which was apparently not the intention when dropping it from the HTML core standard. The counter argument was:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote cite=&amp;quot;https://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html&amp;quot;&amp;gt;Since validators do not implement relation checking at all yet and are waiting on a registry solution before doing so, this was also a weak objection.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
However, once a registry solution was found – i.e. currently this [[existing-rel-values|this microformats WIKI]] – the new registry failed to add the link relation ''up'' as valid value and validators started to report it as an error. Unfortunately, this caused multiple software projects to remove ''rel=up'' from software such as content management systems (&amp;lt;nowiki&amp;gt;https://github.com/webdevops/TYPO3-metaseo/commit/71f2e1b492dfa6304024594a0c7c3b5bd6bea3e4&amp;lt;/nowiki&amp;gt;), documentation tools (&amp;lt;nowiki&amp;gt;https://github.com/sphinx-doc/sphinx/commit/d43259f5f748cd00eba168b54b7b798d3f257911&amp;lt;/nowiki&amp;gt;) and bulletin boards (&amp;lt;nowiki&amp;gt;https://www.phpbb.com/community/viewtopic.php?f=74&amp;amp;t=2170174&amp;lt;/nowiki&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
== Implementations ==&lt;br /&gt;
&lt;br /&gt;
* https://addons.mozilla.org/en-US/firefox/addon/link-widgets/&lt;br /&gt;
* https://chrome.google.com/webstore/detail/cgddacggfmoggigikjjcogdodjiplibe&lt;br /&gt;
* http://www.seamonkey-project.org/&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;https://www.drupal.org/project/rel_links&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
&lt;br /&gt;
* [[rel-next]]&lt;br /&gt;
* [[rel-faq]]&lt;br /&gt;
* [[existing-rel-values]]&lt;/div&gt;</summary>
		<author><name>Prlbr</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=rel-up&amp;diff=66864</id>
		<title>rel-up</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=rel-up&amp;diff=66864"/>
		<updated>2018-06-23T13:41:07Z</updated>

		<summary type="html">&lt;p&gt;Prlbr: /* Use cases */ gave an example how assistive technology could use rel=up (don’t know whether this is done in any software today) and how a &amp;quot;polyfill&amp;quot; could work&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{stub}}&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
Refers to a parent document in a hierarchy of documents.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
A page (&amp;lt;nowiki&amp;gt;https://prlbr.de/galerie/14/am-pranger/&amp;lt;/nowiki&amp;gt;) in a photo gallery showcases a photo. The page defines multiple link relations which refer to the&lt;br /&gt;
&lt;br /&gt;
* '''next''' page which contains the next photo from the gallery&lt;br /&gt;
* '''prev'''ious page from the gallery&lt;br /&gt;
*  parent page using '''up''', which shows previews of many photos as thumbnails including the current one and includes links to their corresponding pages.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;link rel='next' href='/galerie/14/mustergatte/'&amp;gt;&lt;br /&gt;
&amp;lt;link rel='prev' href='/galerie/14/linie-1/'&amp;gt;&lt;br /&gt;
&amp;lt;link rel='up' href='/galerie/seite-6'&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
''next'' and ''prev'' relate to documents on the same hierarchy level while ''up'' moves one level up.&lt;br /&gt;
&lt;br /&gt;
== Use cases ==&lt;br /&gt;
&lt;br /&gt;
Authors can make a hierarchical relationship discoverable, for example between&lt;br /&gt;
&lt;br /&gt;
* a single photo page and a gallery overview page&lt;br /&gt;
* a forum thread and a forum&lt;br /&gt;
* the archive page for a single month in a blog and the archive page for the whole year&lt;br /&gt;
* in software documentation a page about a class and its parent class&lt;br /&gt;
&lt;br /&gt;
This explicit knowledge can improve navigation for users of navigation bars, either browser extension or built-in. Multiple such bars exist and existed in the past. In 2018, at least the SeaMonkey, iCab and Lynx browsers support ''rel=up'' natively. Opera did in the past. Add-ons for previous Firefox versions which used ''rel=up'' included Link Widgets by cdn and Stephen Clavering, Site navigation bar by Klaus Bolwin, cmSiteNavigation Toolbar by Christoph A. Mueller. A LinkBar Add-on for Internet Explorer was available. See &amp;lt;nowiki&amp;gt;http://matthias.gutfeldt.ch/translation/LINK/addendum.html&amp;lt;/nowiki&amp;gt; for exotic/historical examples.&lt;br /&gt;
&lt;br /&gt;
Assistive technology (does any today?) could communicate better what a link such as the following means, for example by reading &amp;quot;link to ''parent page'', arrow up&amp;quot; instead of just &amp;quot;link, arrow up&amp;quot;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&amp;lt;a rel='up' href='..'&amp;gt;↑&amp;lt;/a&amp;gt;&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the absence of native support for ''rel=up'' and similar link relations (''next'', ''prev'', …) in assistive technology it’s possible to translate the ''rel'' values to a textual description with the ''aria-label'' attribute automatically using a script.&lt;br /&gt;
&lt;br /&gt;
Hierarchical information allows for better sitemaps to be generated automatically by web spiders.&lt;br /&gt;
* Web spiders tend to prefer an explicit [[sitemap]] for that use-case. [[User:Tantek|Tantek]] 22:18, 20 June 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Standards ==&lt;br /&gt;
&lt;br /&gt;
The link relation ''up'' is recognized in standards:&lt;br /&gt;
&lt;br /&gt;
* IANA link relations registry (&amp;lt;nowiki&amp;gt;https://www.iana.org/assignments/link-relations/link-relations.xhtml&amp;lt;/nowiki&amp;gt;)&lt;br /&gt;
* XHTML vocabulary (&amp;lt;nowiki&amp;gt;https://www.w3.org/1999/xhtml/vocab#up&amp;lt;/nowiki&amp;gt;)&lt;br /&gt;
** and hence XHTML+RDFa Initial Context (&amp;lt;nowiki&amp;gt;https://www.w3.org/2011/rdfa-context/xhtml-rdfa-1.1&amp;lt;/nowiki&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;discussion&amp;quot;&amp;gt;&lt;br /&gt;
* This is good reason to reserve the rel value of &amp;quot;up&amp;quot;, but insufficient to make it a standard, since those registries do not require use-cases or implementation, both of which are essential to having a useful standard. - [[User:Tantek|Tantek]] 22:18, 20 June 2018 (UTC)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
&lt;br /&gt;
Historically ''up'' has also been in HTML3 (&amp;lt;nowiki&amp;gt;https://www.w3.org/MarkUp/html3/dochead.html&amp;lt;/nowiki&amp;gt;), but could not be found in later editions of HTML, until its use in practice was recognized during the development of HTML5 (&amp;lt;nowiki&amp;gt;https://blog.whatwg.org/the-road-to-html-5-link-relations#rel-first&amp;lt;/nowiki&amp;gt;) and hence found its way into HTML5 Working Drafts (&amp;lt;nowiki&amp;gt;https://www.w3.org/TR/2011/WD-html5-20110113/links.html#link-type-up&amp;lt;/nowiki&amp;gt;). Then the link relation ''up'' was dropped from HTML5 without prejudice (&amp;lt;nowiki&amp;gt;https://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html&amp;lt;/nowiki&amp;gt;) for adding it to other future link relation registries – e.g. this [[existing-rel-values|this microformats WIKI]] – and recognizing that it is a defined standard anyway due to the IANA registry:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote cite=&amp;quot;https://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html&amp;quot;&amp;gt;Finally, it was noted that the link relations being dropped are already defined in the IANA registry and could be defined in future registries;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
An argument against that decision was that dropping ''up'' from the HTML standard would cause content to show up as invalid in validators and would stop people from using it, which was apparently not the intention when dropping it from the HTML core standard. The counter argument was:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote cite=&amp;quot;https://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html&amp;quot;&amp;gt;Since validators do not implement relation checking at all yet and are waiting on a registry solution before doing so, this was also a weak objection.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
However, once a registry solution was found – i.e. currently this [[existing-rel-values|this microformats WIKI]] – the new registry failed to add the link relation ''up'' as valid value and validators started to report it as an error. Unfortunately, this caused multiple software projects to remove ''rel=up'' from software such as content management systems (&amp;lt;nowiki&amp;gt;https://github.com/webdevops/TYPO3-metaseo/commit/71f2e1b492dfa6304024594a0c7c3b5bd6bea3e4&amp;lt;/nowiki&amp;gt;), documentation tools (&amp;lt;nowiki&amp;gt;https://github.com/sphinx-doc/sphinx/commit/d43259f5f748cd00eba168b54b7b798d3f257911&amp;lt;/nowiki&amp;gt;) and bulletin boards (&amp;lt;nowiki&amp;gt;https://www.phpbb.com/community/viewtopic.php?f=74&amp;amp;t=2170174&amp;lt;/nowiki&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
== Implementations ==&lt;br /&gt;
&lt;br /&gt;
* https://addons.mozilla.org/en-US/firefox/addon/link-widgets/&lt;br /&gt;
* https://chrome.google.com/webstore/detail/cgddacggfmoggigikjjcogdodjiplibe&lt;br /&gt;
* http://www.seamonkey-project.org/&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;https://www.drupal.org/project/rel_links&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
&lt;br /&gt;
* [[rel-next]]&lt;br /&gt;
* [[rel-faq]]&lt;br /&gt;
* [[existing-rel-values]]&lt;/div&gt;</summary>
		<author><name>Prlbr</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=rel-up&amp;diff=66863</id>
		<title>rel-up</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=rel-up&amp;diff=66863"/>
		<updated>2018-06-22T22:50:08Z</updated>

		<summary type="html">&lt;p&gt;Prlbr: /* Use cases */ added specific examples of browsers/extensions which improve navigation with rel=up&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{stub}}&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
Refers to a parent document in a hierarchy of documents.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
A page (&amp;lt;nowiki&amp;gt;https://prlbr.de/galerie/14/am-pranger/&amp;lt;/nowiki&amp;gt;) in a photo gallery showcases a photo. The page defines multiple link relations which refer to the&lt;br /&gt;
&lt;br /&gt;
* '''next''' page which contains the next photo from the gallery&lt;br /&gt;
* '''prev'''ious page from the gallery&lt;br /&gt;
*  parent page using '''up''', which shows previews of many photos as thumbnails including the current one and includes links to their corresponding pages.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;link rel='next' href='/galerie/14/mustergatte/'&amp;gt;&lt;br /&gt;
&amp;lt;link rel='prev' href='/galerie/14/linie-1/'&amp;gt;&lt;br /&gt;
&amp;lt;link rel='up' href='/galerie/seite-6'&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
''next'' and ''prev'' relate to documents on the same hierarchy level while ''up'' moves one level up.&lt;br /&gt;
&lt;br /&gt;
== Use cases ==&lt;br /&gt;
&lt;br /&gt;
Authors can make a hierarchical relationship discoverable, for example between&lt;br /&gt;
&lt;br /&gt;
* a single photo page and a gallery overview page&lt;br /&gt;
* a forum thread and a forum&lt;br /&gt;
* the archive page for a single month in a blog and the archive page for the whole year&lt;br /&gt;
* in software documentation a page about a class and its parent class&lt;br /&gt;
&lt;br /&gt;
This explicit knowledge can improve navigation for users of navigation bars, either browser extension or built-in. Multiple such bars exist and existed in the past. In 2018, at least the SeaMonkey, iCab and Lynx browsers support ''rel=up'' natively. Opera did in the past. Add-ons for previous Firefox versions which used ''rel=up'' included Link Widgets by cdn and Stephen Clavering, Site navigation bar by Klaus Bolwin, cmSiteNavigation Toolbar by Christoph A. Mueller. A LinkBar Add-on for Internet Explorer was available. See &amp;lt;nowiki&amp;gt;http://matthias.gutfeldt.ch/translation/LINK/addendum.html&amp;lt;/nowiki&amp;gt; for exotic/historical examples.&lt;br /&gt;
&lt;br /&gt;
Assistive technology (does any today?) could communicate (what should it say?) better what a link such as the following means:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&amp;lt;a rel='up' href='..'&amp;gt;↑&amp;lt;/a&amp;gt;&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Hierarchical information allows for better sitemaps to be generated automatically by web spiders.&lt;br /&gt;
* Web spiders tend to prefer an explicit [[sitemap]] for that use-case. [[User:Tantek|Tantek]] 22:18, 20 June 2018 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Standards ==&lt;br /&gt;
&lt;br /&gt;
The link relation ''up'' is recognized in standards:&lt;br /&gt;
&lt;br /&gt;
* IANA link relations registry (&amp;lt;nowiki&amp;gt;https://www.iana.org/assignments/link-relations/link-relations.xhtml&amp;lt;/nowiki&amp;gt;)&lt;br /&gt;
* XHTML vocabulary (&amp;lt;nowiki&amp;gt;https://www.w3.org/1999/xhtml/vocab#up&amp;lt;/nowiki&amp;gt;)&lt;br /&gt;
** and hence XHTML+RDFa Initial Context (&amp;lt;nowiki&amp;gt;https://www.w3.org/2011/rdfa-context/xhtml-rdfa-1.1&amp;lt;/nowiki&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;discussion&amp;quot;&amp;gt;&lt;br /&gt;
* This is good reason to reserve the rel value of &amp;quot;up&amp;quot;, but insufficient to make it a standard, since those registries do not require use-cases or implementation, both of which are essential to having a useful standard. - [[User:Tantek|Tantek]] 22:18, 20 June 2018 (UTC)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
&lt;br /&gt;
Historically ''up'' has also been in HTML3 (&amp;lt;nowiki&amp;gt;https://www.w3.org/MarkUp/html3/dochead.html&amp;lt;/nowiki&amp;gt;), but could not be found in later editions of HTML, until its use in practice was recognized during the development of HTML5 (&amp;lt;nowiki&amp;gt;https://blog.whatwg.org/the-road-to-html-5-link-relations#rel-first&amp;lt;/nowiki&amp;gt;) and hence found its way into HTML5 Working Drafts (&amp;lt;nowiki&amp;gt;https://www.w3.org/TR/2011/WD-html5-20110113/links.html#link-type-up&amp;lt;/nowiki&amp;gt;). Then the link relation ''up'' was dropped from HTML5 without prejudice (&amp;lt;nowiki&amp;gt;https://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html&amp;lt;/nowiki&amp;gt;) for adding it to other future link relation registries – e.g. this [[existing-rel-values|this microformats WIKI]] – and recognizing that it is a defined standard anyway due to the IANA registry:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote cite=&amp;quot;https://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html&amp;quot;&amp;gt;Finally, it was noted that the link relations being dropped are already defined in the IANA registry and could be defined in future registries;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
An argument against that decision was that dropping ''up'' from the HTML standard would cause content to show up as invalid in validators and would stop people from using it, which was apparently not the intention when dropping it from the HTML core standard. The counter argument was:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote cite=&amp;quot;https://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html&amp;quot;&amp;gt;Since validators do not implement relation checking at all yet and are waiting on a registry solution before doing so, this was also a weak objection.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
However, once a registry solution was found – i.e. currently this [[existing-rel-values|this microformats WIKI]] – the new registry failed to add the link relation ''up'' as valid value and validators started to report it as an error. Unfortunately, this caused multiple software projects to remove ''rel=up'' from software such as content management systems (&amp;lt;nowiki&amp;gt;https://github.com/webdevops/TYPO3-metaseo/commit/71f2e1b492dfa6304024594a0c7c3b5bd6bea3e4&amp;lt;/nowiki&amp;gt;), documentation tools (&amp;lt;nowiki&amp;gt;https://github.com/sphinx-doc/sphinx/commit/d43259f5f748cd00eba168b54b7b798d3f257911&amp;lt;/nowiki&amp;gt;) and bulletin boards (&amp;lt;nowiki&amp;gt;https://www.phpbb.com/community/viewtopic.php?f=74&amp;amp;t=2170174&amp;lt;/nowiki&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
== Implementations ==&lt;br /&gt;
&lt;br /&gt;
* https://addons.mozilla.org/en-US/firefox/addon/link-widgets/&lt;br /&gt;
* https://chrome.google.com/webstore/detail/cgddacggfmoggigikjjcogdodjiplibe&lt;br /&gt;
* http://www.seamonkey-project.org/&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;https://www.drupal.org/project/rel_links&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
&lt;br /&gt;
* [[rel-next]]&lt;br /&gt;
* [[rel-faq]]&lt;br /&gt;
* [[existing-rel-values]]&lt;/div&gt;</summary>
		<author><name>Prlbr</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=rel-up&amp;diff=66832</id>
		<title>rel-up</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=rel-up&amp;diff=66832"/>
		<updated>2018-06-20T15:13:40Z</updated>

		<summary type="html">&lt;p&gt;Prlbr: added possible use cases&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{stub}}&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
Refers to a parent document in a hierarchy of documents.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
A page (&amp;lt;nowiki&amp;gt;https://prlbr.de/galerie/14/am-pranger/&amp;lt;/nowiki&amp;gt;) in a photo gallery showcases a photo. The page defines multiple link relations which refer to the&lt;br /&gt;
&lt;br /&gt;
* '''next''' page which contains the next photo from the gallery&lt;br /&gt;
* '''prev'''ious page from the gallery&lt;br /&gt;
*  parent page using '''up''', which shows previews of many photos as thumbnails including the current one and includes links to their corresponding pages.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;link rel='next' href='/galerie/14/mustergatte/'&amp;gt;&lt;br /&gt;
&amp;lt;link rel='prev' href='/galerie/14/linie-1/'&amp;gt;&lt;br /&gt;
&amp;lt;link rel='up' href='/galerie/seite-6'&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
''next'' and ''prev'' relate to documents on the same hierarchy level while ''up'' moves one level up.&lt;br /&gt;
&lt;br /&gt;
== Use cases ==&lt;br /&gt;
&lt;br /&gt;
Authors can make a hierarchical relationship machine-readable, for example between&lt;br /&gt;
&lt;br /&gt;
* a single photo page and a gallery overview page&lt;br /&gt;
* a forum thread and a forum&lt;br /&gt;
* the archive page for a single month in a blog and the archive page for the whole year&lt;br /&gt;
* in software documentation a page about a class and its parent class&lt;br /&gt;
&lt;br /&gt;
This can improve navigation for users of navigation bars, either browser extension or built-in. Multiple such bars exist and existed in the past. Assistive technology could communicate better what a link such as the following means:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&amp;lt;a rel='up' href='..'&amp;gt;↑&amp;lt;/a&amp;gt;&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Hierarchical information allows for better sitemaps to be generated automatically by web spiders.&lt;br /&gt;
&lt;br /&gt;
== Standards ==&lt;br /&gt;
&lt;br /&gt;
The link relation ''up'' is recognized in standards:&lt;br /&gt;
&lt;br /&gt;
* IANA link relations registry (&amp;lt;nowiki&amp;gt;https://www.iana.org/assignments/link-relations/link-relations.xhtml&amp;lt;/nowiki&amp;gt;)&lt;br /&gt;
* XHTML vocabulary (&amp;lt;nowiki&amp;gt;https://www.w3.org/1999/xhtml/vocab#up&amp;lt;/nowiki&amp;gt;)&lt;br /&gt;
** and hence XHTML+RDFa Initial Context (&amp;lt;nowiki&amp;gt;https://www.w3.org/2011/rdfa-context/xhtml-rdfa-1.1&amp;lt;/nowiki&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
&lt;br /&gt;
Historically ''up'' has also been in HTML3 (&amp;lt;nowiki&amp;gt;https://www.w3.org/MarkUp/html3/dochead.html&amp;lt;/nowiki&amp;gt;), but could not be found in later editions of HTML, until its use in practice was recognized during the development of HTML5 (&amp;lt;nowiki&amp;gt;https://blog.whatwg.org/the-road-to-html-5-link-relations#rel-first&amp;lt;/nowiki&amp;gt;) and hence found its way into HTML5 Working Drafts (&amp;lt;nowiki&amp;gt;https://www.w3.org/TR/2011/WD-html5-20110113/links.html#link-type-up&amp;lt;/nowiki&amp;gt;). Then the link relation ''up'' was dropped from HTML5 without prejudice (&amp;lt;nowiki&amp;gt;https://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html&amp;lt;/nowiki&amp;gt;) for adding it to other future link relation registries – e.g. this [[existing-rel-values|this microformats WIKI]] – and recognizing that it is a defined standard anyway due to the IANA registry:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote cite=&amp;quot;https://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html&amp;quot;&amp;gt;Finally, it was noted that the link relations being dropped are already defined in the IANA registry and could be defined in future registries;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
An argument against that decision was that dropping ''up'' from the HTML standard would cause content to show up as invalid in validators and would stop people from using it, which was apparently not the intention when dropping it from the HTML core standard. The counter argument was:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote cite=&amp;quot;https://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html&amp;quot;&amp;gt;Since validators do not implement relation checking at all yet and are waiting on a registry solution before doing so, this was also a weak objection.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
However, once a registry solution was found – i.e. currently this [[existing-rel-values|this microformats WIKI]] – the new registry failed to add the link relation ''up'' as valid value and validators started to report it as an error. Unfortunately, this caused multiple software projects to remove ''rel=up'' from software such as content management systems (&amp;lt;nowiki&amp;gt;https://github.com/webdevops/TYPO3-metaseo/commit/71f2e1b492dfa6304024594a0c7c3b5bd6bea3e4&amp;lt;/nowiki&amp;gt;), documentation tools (&amp;lt;nowiki&amp;gt;https://github.com/sphinx-doc/sphinx/commit/d43259f5f748cd00eba168b54b7b798d3f257911&amp;lt;/nowiki&amp;gt;) and bulletin boards (&amp;lt;nowiki&amp;gt;https://www.phpbb.com/community/viewtopic.php?f=74&amp;amp;t=2170174&amp;lt;/nowiki&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
== Implementations ==&lt;br /&gt;
&lt;br /&gt;
* https://addons.mozilla.org/en-US/firefox/addon/link-widgets/&lt;br /&gt;
* https://chrome.google.com/webstore/detail/cgddacggfmoggigikjjcogdodjiplibe&lt;br /&gt;
* http://www.seamonkey-project.org/&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;https://www.drupal.org/project/rel_links&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
&lt;br /&gt;
* [[rel-next]]&lt;br /&gt;
* [[rel-faq]]&lt;br /&gt;
* [[existing-rel-values]]&lt;/div&gt;</summary>
		<author><name>Prlbr</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=rel-up&amp;diff=66831</id>
		<title>rel-up</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=rel-up&amp;diff=66831"/>
		<updated>2018-06-20T14:38:11Z</updated>

		<summary type="html">&lt;p&gt;Prlbr: added some historical notes (the wiki doesn’t let me post external links, so I put the URLs into &amp;lt;nowiki&amp;gt; tags)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{stub}}&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
Refers to a parent document in a hierarchy of documents.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
A page (&amp;lt;nowiki&amp;gt;https://prlbr.de/galerie/14/am-pranger/&amp;lt;/nowiki&amp;gt;) in a photo gallery showcases a photo. The page defines multiple link relations which refer to the&lt;br /&gt;
&lt;br /&gt;
* '''next''' page which contains the next photo from the gallery&lt;br /&gt;
* '''prev'''ious page from the gallery&lt;br /&gt;
*  parent page using '''up''', which shows previews of many photos as thumbnails including the current one and includes links to their corresponding pages.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;link rel='next' href='/galerie/14/mustergatte/'&amp;gt;&lt;br /&gt;
&amp;lt;link rel='prev' href='/galerie/14/linie-1/'&amp;gt;&lt;br /&gt;
&amp;lt;link rel='up' href='/galerie/seite-6'&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
''next'' and ''prev'' relate to documents on the same hierarchy level while ''up'' moves one level up.&lt;br /&gt;
&lt;br /&gt;
== Standards ==&lt;br /&gt;
&lt;br /&gt;
The link relation ''up'' is recognized in standards:&lt;br /&gt;
&lt;br /&gt;
* IANA link relations registry (&amp;lt;nowiki&amp;gt;https://www.iana.org/assignments/link-relations/link-relations.xhtml&amp;lt;/nowiki&amp;gt;)&lt;br /&gt;
* XHTML vocabulary (&amp;lt;nowiki&amp;gt;https://www.w3.org/1999/xhtml/vocab#up&amp;lt;/nowiki&amp;gt;)&lt;br /&gt;
** and hence XHTML+RDFa Initial Context (&amp;lt;nowiki&amp;gt;https://www.w3.org/2011/rdfa-context/xhtml-rdfa-1.1&amp;lt;/nowiki&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
&lt;br /&gt;
Historically ''up'' has also been in HTML3 (&amp;lt;nowiki&amp;gt;https://www.w3.org/MarkUp/html3/dochead.html&amp;lt;/nowiki&amp;gt;), but could not be found in later editions of HTML, until its use in practice was recognized during the development of HTML5 (&amp;lt;nowiki&amp;gt;https://blog.whatwg.org/the-road-to-html-5-link-relations#rel-first&amp;lt;/nowiki&amp;gt;) and hence found its way into HTML5 Working Drafts (&amp;lt;nowiki&amp;gt;https://www.w3.org/TR/2011/WD-html5-20110113/links.html#link-type-up&amp;lt;/nowiki&amp;gt;). Then the link relation ''up'' was dropped from HTML5 without prejudice (&amp;lt;nowiki&amp;gt;https://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html&amp;lt;/nowiki&amp;gt;) for adding it to other future link relation registries – e.g. this [[existing-rel-values|this microformats WIKI]] – and recognizing that it is a defined standard anyway due to the IANA registry:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote cite=&amp;quot;https://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html&amp;quot;&amp;gt;Finally, it was noted that the link relations being dropped are already defined in the IANA registry and could be defined in future registries;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
An argument against that decision was that dropping ''up'' from the HTML standard would cause content to show up as invalid in validators and would stop people from using it, which was apparently not the intention when dropping it from the HTML core standard. The counter argument was:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote cite=&amp;quot;https://lists.w3.org/Archives/Public/public-html/2011Feb/att-0481/issue-118-decision.html&amp;quot;&amp;gt;Since validators do not implement relation checking at all yet and are waiting on a registry solution before doing so, this was also a weak objection.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
However, once a registry solution was found – i.e. currently this [[existing-rel-values|this microformats WIKI]] – the new registry failed to add the link relation ''up'' as valid value and validators started to report it as an error. Unfortunately, this caused multiple software projects to remove ''rel=up'' from software such as content management systems (&amp;lt;nowiki&amp;gt;https://github.com/webdevops/TYPO3-metaseo/commit/71f2e1b492dfa6304024594a0c7c3b5bd6bea3e4&amp;lt;/nowiki&amp;gt;), documentation tools (&amp;lt;nowiki&amp;gt;https://github.com/sphinx-doc/sphinx/commit/d43259f5f748cd00eba168b54b7b798d3f257911&amp;lt;/nowiki&amp;gt;) and bulletin boards (&amp;lt;nowiki&amp;gt;https://www.phpbb.com/community/viewtopic.php?f=74&amp;amp;t=2170174&amp;lt;/nowiki&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
== Implementations ==&lt;br /&gt;
&lt;br /&gt;
* https://addons.mozilla.org/en-US/firefox/addon/link-widgets/&lt;br /&gt;
* https://chrome.google.com/webstore/detail/cgddacggfmoggigikjjcogdodjiplibe&lt;br /&gt;
* http://www.seamonkey-project.org/&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;https://www.drupal.org/project/rel_links&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
&lt;br /&gt;
* [[rel-next]]&lt;br /&gt;
* [[rel-faq]]&lt;br /&gt;
* [[existing-rel-values]]&lt;/div&gt;</summary>
		<author><name>Prlbr</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=rel-up&amp;diff=66830</id>
		<title>rel-up</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=rel-up&amp;diff=66830"/>
		<updated>2018-06-20T14:28:02Z</updated>

		<summary type="html">&lt;p&gt;Prlbr: added standards that define rel=up and an implementation (the wiki doesn’t let me post an external link, so I put the URL into &amp;lt;nowiki&amp;gt; tags)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{stub}}&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
Refers to a parent document in a hierarchy of documents.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
A page (&amp;lt;nowiki&amp;gt;https://prlbr.de/galerie/14/am-pranger/&amp;lt;/nowiki&amp;gt;) in a photo gallery showcases a photo. The page defines multiple link relations which refer to the&lt;br /&gt;
&lt;br /&gt;
* '''next''' page which contains the next photo from the gallery&lt;br /&gt;
* '''prev'''ious page from the gallery&lt;br /&gt;
*  parent page using '''up''', which shows previews of many photos as thumbnails including the current one and includes links to their corresponding pages.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;link rel='next' href='/galerie/14/mustergatte/'&amp;gt;&lt;br /&gt;
&amp;lt;link rel='prev' href='/galerie/14/linie-1/'&amp;gt;&lt;br /&gt;
&amp;lt;link rel='up' href='/galerie/seite-6'&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
''next'' and ''prev'' relate to documents on the same hierarchy level while ''up'' moves one level up.&lt;br /&gt;
&lt;br /&gt;
== Standards ==&lt;br /&gt;
&lt;br /&gt;
The link relation ''up'' is recognized in standards:&lt;br /&gt;
&lt;br /&gt;
* IANA link relations registry (&amp;lt;nowiki&amp;gt;https://www.iana.org/assignments/link-relations/link-relations.xhtml&amp;lt;/nowiki&amp;gt;)&lt;br /&gt;
* XHTML vocabulary (&amp;lt;nowiki&amp;gt;https://www.w3.org/1999/xhtml/vocab#up&amp;lt;/nowiki&amp;gt;)&lt;br /&gt;
** and hence XHTML+RDFa Initial Context (&amp;lt;nowiki&amp;gt;https://www.w3.org/2011/rdfa-context/xhtml-rdfa-1.1&amp;lt;/nowiki&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
== Implementations ==&lt;br /&gt;
&lt;br /&gt;
* https://addons.mozilla.org/en-US/firefox/addon/link-widgets/&lt;br /&gt;
* https://chrome.google.com/webstore/detail/cgddacggfmoggigikjjcogdodjiplibe&lt;br /&gt;
* http://www.seamonkey-project.org/&lt;br /&gt;
* &amp;lt;nowiki&amp;gt;https://www.drupal.org/project/rel_links&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
&lt;br /&gt;
* [[rel-next]]&lt;br /&gt;
* [[rel-faq]]&lt;br /&gt;
* [[existing-rel-values]]&lt;/div&gt;</summary>
		<author><name>Prlbr</name></author>
	</entry>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=rel-up&amp;diff=66829</id>
		<title>rel-up</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=rel-up&amp;diff=66829"/>
		<updated>2018-06-20T14:19:40Z</updated>

		<summary type="html">&lt;p&gt;Prlbr: added short description, example (the wiki doesn’t let me post an external link, so I put the URL into &amp;lt;nowiki&amp;gt; tags)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{stub}}&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
Refers to a parent document in a hierarchy of documents.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
A page (&amp;lt;nowiki&amp;gt;https://prlbr.de/galerie/14/am-pranger/&amp;lt;/nowiki&amp;gt;) in a photo gallery showcases a photo. The page defines multiple link relations which refer to the&lt;br /&gt;
&lt;br /&gt;
* '''next''' page which contains the next photo from the gallery&lt;br /&gt;
* '''prev'''ious page from the gallery&lt;br /&gt;
*  parent page using '''up''', which shows previews of many photos as thumbnails including the current one and includes links to their corresponding pages.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=html4strict&amp;gt;&lt;br /&gt;
&amp;lt;link rel='next' href='/galerie/14/mustergatte/'&amp;gt;&lt;br /&gt;
&amp;lt;link rel='prev' href='/galerie/14/linie-1/'&amp;gt;&lt;br /&gt;
&amp;lt;link rel='up' href='/galerie/seite-6'&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
''next'' and ''prev'' relate to documents on the same hierarchy level while ''up'' moves one level up.&lt;br /&gt;
&lt;br /&gt;
== Implementations ==&lt;br /&gt;
&lt;br /&gt;
* https://addons.mozilla.org/en-US/firefox/addon/link-widgets/&lt;br /&gt;
* https://chrome.google.com/webstore/detail/cgddacggfmoggigikjjcogdodjiplibe&lt;br /&gt;
* http://www.seamonkey-project.org/&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
&lt;br /&gt;
* [[rel-next]]&lt;br /&gt;
* [[rel-faq]]&lt;br /&gt;
* [[existing-rel-values]]&lt;/div&gt;</summary>
		<author><name>Prlbr</name></author>
	</entry>
</feed>