print-window-tiddler
Jermolene 2014-07-06 15:37:50 +01:00
rodzic 3351ae7e29
commit 5b5fb18161
1 zmienionych plików z 17 dodań i 6 usunięć

Wyświetl plik

@ -1,10 +1,12 @@
created: 20131205155230596
modified: 20130506185813974
modified: 20130706185813974
tags: wikitext
title: Linking in WikiText
type: text/vnd.tiddlywiki
A key capability of WikiText is the ability to make links to other tiddlers or to external websites. There are several ways of doing this:
A key capability of WikiText is the ability to make links to other tiddlers or to external websites.
! Manual Links
Link to a tiddler by title:
@ -18,7 +20,16 @@ To link to a tiddler and specify the text of the link:
[[Displayed Link Title|Tiddler Title]]
```
For tiddler titles that match the CamelCase rules, just typing the title will automatically create a link.
! ~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
To link to an external website, type the full URL of the site:
@ -38,7 +49,7 @@ For this syntax to work, the URL has to be recognisable as an URL, including a p
[ext[Donate|bitcoin:1aabbdd....?amount=0.001]]
```
You can suppress a link from being recognised by preceding it with `~`. For example:
! 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.
<<wikitext-example src:"* ~HelloThere is not a link
* ~http://google.com/ is not a link">>