Version Differences for Links

Line 1:
    + There are four sorts of links in JAMWiki:  
    + # '''[[#Internal links|internal links]]''' to other pages in the wiki  
    + # '''[[#External links|external links]]''' to other websites  
    + # '''[[#Interwiki links|interwiki links]]''' to other websites registered to the wiki in advance  
    + # '''[[#Virtual wiki links|Virtual wiki links]]''' to other virtual wikis on the current wiki  
       
    + == Internal links ==  
    + To add an internal link, enclose the name of the page you want to link to in double square brackets. When you save the page, you'll see the new link pointing to your page. If the page exists already it is displayed in blue, if it does not, in red.  
    + Selflinks to the current page are not transformed in URLs but displayed in bold.  
    + (If you really want to link to the current page, use an anchor (see below), or <nowiki>[[#top|current page]]</nowiki> which always links to the top.)  
       
    + The first letter of the target page is automatically capitalized, unless otherwise set by the admins, and spaces are represented as underscores (typing an underscore in the link will have a similar effect as typing a space, but is not recommended, since the underscore will also be shown in the text).  
       
    + {| border="1" class="wikitable"  
    + !Description  
    + !You type  
    + !You get  
    + |-  
    + |Internal link  
    + |<pre>[[JAMWiki]]</pre>  
    + |[[JAMWiki]]  
    + |-  
    + |Piped link  
    + |<pre>[[JAMWiki|different text]]</pre>  
       
    + |[[JAMWiki|different text]]  
    + |-  
    + |word-ending links  
    + |<pre>  
    + [[Configuration]]s  
       
    + [[Configuration]]ing  
       
    + [[Configuration]]ers  
       
    + [[Configuration]]anylettersyoulikehere  
    + </pre>  
    + |  
    + [[Configuration]]s  
       
    + [[Configuration]]ing  
       
    + [[Configuration]]ers  
       
    + [[Configuration]]anylettersyoulikehere  
    + |-  
    + |Redirect  
    + |<pre>#REDIRECT [[JAMWiki]]</pre>  
       
    + | &rarr; [[JAMWiki]]  
    + |-  
    + |Internal link to an anchor  
    + |<pre>[[#Internal links]]</pre>  
    + [[Help:Formatting|Section headings]] and the [[#top|top]] of the page are automatically anchored.  
    + |[[#Internal links]]  
    + |-  
    + |Internal link to an anchor from different text  
    + |<pre>[[#Internal links|different text]]</pre>  
    + |[[#Internal links|different text]]  
    + |-  
    + |Setting an internal link anchor  
    + |<pre><div id="NameOfAnchorHere">optional text</div></pre>  
    + Omit the "optional text" for invisible anchor.  
    + |<div id="NameOfAnchorHere">optional text</div>  
    + |-  
    + |Internal link to an anchor at another page  
    + |<pre>[[Help:Images#Internal links]]</pre>  
    + |[[Help:Images#Internal links]]  
    + |-  
    + |Internal link to the current page's talk page  
    + |<pre>[[{{TALKPAGENAME}}|Discussion]]</pre>  
       
    + |[[{{TALKPAGENAME}}|Discussion]]  
    + |-  
    + |Internal link to a category page  
    + |<pre>[[:Category:User Documentation]]</pre>  
    + See also [[Help:Categories]]  
    + |[[:Category:User Documentation]]  
    + |-  
    + |Internal link to an image or a file of other types  
    + |<pre>[[media:example.jpg]]  
       
    + [[media:example.pdf]]</pre>  
       
    + |[[media:example.jpg]]  
       
    + [[media:example.pdf]]  
    + |}  
       
    + == External links ==  
    + {| border="1" class="wikitable"  
    + !style="width:15%"|Description  
    + !style="width:45%"|You type  
    + !style="width:40%"|You get  
    + |-  
    + |External link  
    + |<tt><nowiki>http://mediawiki.org</nowiki></tt>  
    + |http://mediawiki.org  
    + |-  
    + |External link with different label  
    + |<tt><nowiki>[http://mediawiki.org MediaWiki]</nowiki></tt>  
    + |[http://mediawiki.org MediaWiki]  
    + |-  
    + |Numbered external link  
    + |<tt><nowiki>[http://mediawiki.org]</nowiki></tt>  
    + |[http://mediawiki.org]  
    + |-  
    + |External links with file icons  
    + |<tt><nowiki>  
    + [http://en.wikipedia.org/wiki/.avi video]  
    + [http://en.wikipedia.org/wiki/.ogg sound]  
    + [http://en.wikipedia.org/wiki/.pdf document]  
    + </nowiki></tt>  
    + |  
    + [http://en.wikipedia.org/wiki/.avi video]<br/>  
    + [http://en.wikipedia.org/wiki/.ogg sound]<br/>  
    + [http://en.wikipedia.org/wiki/.pdf document]<br/>  
    + |-  
    + |External link to the same host  
    + |<tt><nowiki>http://{{SERVERNAME}}/pagename</nowiki></tt>  
    + |http://{{SERVERNAME}}/pagename  
    + |-  
    + |External link to other host passing the pagename  
    + |<tt><nowiki>http://google.com/search?q={{PAGENAMEE}}</nowiki></tt>  
    + |http://google.com/search?q={{PAGENAMEE}}  
    + |-  
    + |Mailto link  
    + |<tt><nowiki>[mailto:info@example.org email me]</nowiki></tt>  
    + |[mailto:info@example.org email me]  
    + |-  
    + |Mailto named with subject line and body  
    + |<tt><nowiki>[mailto:info@example.org?Subject=URL%20Encoded%20Subject&amp;body=Body%20Text info]</nowiki></tt>  
    + |[mailto:info@example.org?Subject=URL%20Encoded%20Subject&body=Body%20Text info]  
    + |}  
       
    + === How to avoid auto-links ===  
    + By default, when you write a URL as is, it will be transformed to an external link.  
       
    + To avoid that effect, put the URL between <code>&lt;nowiki&gt;</code> tags as in:  
    + <nowiki><nowiki>http://mediawiki.org</nowiki></nowiki>  
       
    + == Interwiki links ==  
    + Interwiki links are links with the internal link markup to a website registered in advance. For example, you can link to the Sunflower article on http://en.wikipedia.org by typing <code><nowiki>[[wikipedia:Sunflower]]</nowiki></code>, which will result in a link [[:wikipedia:Sunflower]]. This is because <code><nowiki>http://en.wikipedia.org/wiki/</nowiki></code> is registered to your wiki by default with the prefix of <code>wikipedia</code>. ''This link may not work properly, if the admin of your wiki has changed the setting.'' Unlike internal links, interwiki links do not use page existence detection, so an interwiki link will appear blue even if the page does not exist on the remote wiki.  
       
    + Similar to internal page links, you can create piped links, with alternate link label, e.g. <code><nowiki>[[:wikipedia:Sunflower|big yellow flower]]</nowiki></code>.  
       
    + Basically this is an abbreviation for longer URLs. A very similar link could be created as a normal external link by typing <code><nowiki>[http://en.wikipedia.org/wiki/Sunflower big yellow flower]</nowiki></code>, but interwiki links allow you to type out an easy and compact link, almost as if you are linking to a page on your own wiki.  
       
    + The available interwiki links that are configured for a site can be managed from the [[Special:VirtualWiki]] tool by users with admin rights on the wiki.  
       
    + The default Interwiki links installed with JAMWiki (as of version 1.1) are:  
       
    + {| border="1" class="wikitable"  
    + |-  
    + ! Prefix !! Pattern !! Target  
    + |-  
    + | <code>jamwikiorg</code> || http://jamwiki.org/wiki/en/{0} || JAMWiki  
    + |-  
    + | <code>mediawiki</code> || http://www.mediawiki.org/wiki/{0} || MediaWiki  
    + |-  
    + | <code>metawikipedia</code> || http://meta.wikimedia.org/wiki/{0} || Wikimedia Meta-Wiki  
    + |-  
    + | <code>wiki</code> || http://c2.com/cgi/wiki?{0} || WikiWiki  
    + |-  
    + | <code>wikia</code> || http://www.wikia.com/wiki/index.php/{0} || Wikia  
    + |-  
    + | <code>wikipedia</code> || http://en.wikipedia.org/wiki/{0} || Wikipedia  
    + |-  
    + | <code>wikiquote</code> || http://en.wikiquote.org/wiki/{0} || Wikiquote  
    + |-  
    + | <code>wikinews</code> || http://en.wikinews.org/wiki/{0} || Wikinews  
    + |}  
       
    + === Virtual wiki links ===  
    + If your wiki utilizes virtual wikis, you may find "virtual wiki links" in the [[LeftMenu|sidebar]] in the box named "Other Languages."  
       
    + Virtual wiki links behave similar to interwiki links, except that they are listed in a separate box. To create an virtual wiki link from a page, just type <code><nowiki>[[</nowiki>'':virtual wiki prefix'':pagename]]</code> wherever you like in the page; the language prefix is the prefix specified at your wiki for the other language version (typically the [[:wikipedia:ISO 639|ISO language code]]).  
       
    + If you want to make the virtual wiki link to appear in the content of the page, you can add a colon before the language prefix, e.g. <code><nowiki>[[:en:Sunflower]]</nowiki></code>.  
       
       
       
    + [[Category:Hilfe]]