2013-12-05 16:21:10 +00:00
created: 20131205155230596
2014-07-06 14:37:50 +00:00
modified: 20130706185813974
2014-09-11 08:15:58 +00:00
tags: WikiText
2013-12-05 16:21:10 +00:00
title: Linking in WikiText
type: text/vnd.tiddlywiki
2014-09-11 08:15:58 +00:00
caption: Linking
2013-12-05 16:21:10 +00:00
2014-07-06 14:37:50 +00:00
A key capability of WikiText is the ability to make links to other tiddlers or to external websites.
! Manual Links
2013-12-05 16:21:10 +00:00
2014-05-06 19:05:51 +00:00
Link to a tiddler by title:
```
[[Tiddler Title]]
```
To link to a tiddler and specify the text of the link:
```
[[Displayed Link Title|Tiddler Title]]
```
2014-07-06 14:37:50 +00:00
! ~CamelCase Links
For tiddler titles that match the CamelCase rules, just typing the title without double square brackets will automatically create a link.
You can suppress a link from being recognised by preceding it with `~`. For example:
<<wikitext-example src:"* ~HelloThere is not a link
* ~http://google.com/ is not a link">>
! External Links
2014-05-06 19:05:51 +00:00
To link to an external website, type the full URL of the site:
```
http://tiddlywiki.com/
[[TW5|http://tiddlywiki.com/]]
```
For this syntax to work, the URL has to be recognisable as an URL, including a protocol such as `http://` or `file://`. You can force an external link with the extended syntax:
```
2014-11-29 00:43:24 +00:00
[ext[http://tiddlywiki.com]]
2014-05-06 19:05:51 +00:00
2014-11-29 00:43:24 +00:00
[ext[caption for link|http://tiddlywiki.com]]
2014-05-06 19:05:51 +00:00
[ext[Donate|bitcoin:1aabbdd....?amount=0.001]]
```
2013-12-05 16:21:10 +00:00
2014-07-06 14:37:50 +00:00
! Customising Tiddler Links
See the LinkWidget for details of the underlying widget used to implement tiddler links, including macros that can be used to customise its behaviour.
2013-12-05 16:21:10 +00:00