diff options
| author | Max Kremmel <xing@synapse.plus.com> | 2008-07-12 21:00:18 +0000 |
|---|---|---|
| committer | Max Kremmel <xing@synapse.plus.com> | 2008-07-12 21:00:18 +0000 |
| commit | 7d18acc8ebf8d4b6ed29dfd7d088804e6ca68ccd (patch) | |
| tree | c1789d57624b3fa49f017adb0a70771c38527d6c /help_format_tikiwiki_inc.php | |
| parent | 5e958f01c7702e6aee79c9e4219d4cfb813c2303 (diff) | |
| download | liberty-7d18acc8ebf8d4b6ed29dfd7d088804e6ca68ccd.tar.gz liberty-7d18acc8ebf8d4b6ed29dfd7d088804e6ca68ccd.tar.bz2 liberty-7d18acc8ebf8d4b6ed29dfd7d088804e6ca68ccd.zip | |
how to use anchors in links
Diffstat (limited to 'help_format_tikiwiki_inc.php')
| -rw-r--r-- | help_format_tikiwiki_inc.php | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/help_format_tikiwiki_inc.php b/help_format_tikiwiki_inc.php index 7e0a9ff..0e139a7 100644 --- a/help_format_tikiwiki_inc.php +++ b/help_format_tikiwiki_inc.php @@ -3,7 +3,7 @@ * help_format_tikiwiki_inc * * @author Christian Fowler> - * @version $Revision: 1.12 $ + * @version $Revision: 1.13 $ * @package liberty * @subpackage functions */ @@ -72,12 +72,19 @@ if( $cache->isCached( $cacheFile, filemtime( __FILE__ ))) { 'data' => "((Wiki Page|Page Description))", 'result' => '<a href="#">Page Description</a>', ), + 'Wiki Links + Anchor + Description' => array( + 'data' => "((Wiki Page#Anchor|Page Description))", + 'result' => '<a href="#">Page Description</a>', + ), 'External Link' => array( 'data' => "[http://www.example.com]", ), 'External Link + Description' => array( 'data' => "[http://www.example.com|Description]", ), + 'External Link + Anchor + Description' => array( + 'data' => "[http://www.example.com/Page#Anchor|Description]", + ), ), 'Miscellaneous' => array( 'Horizontal Rule' => array( |
