From: Rob F. <rfu...@dr...> - 2004-05-25 22:35:43
|
Bernhard Kleine wrote: > Hallo, > html allows anchors <a name="test2">Test2</a> > and hyperlinks like pagename#test2. > How can this be used with phpwiki? > Thanks a lot, merci vielmals > Bernhard From the TextFormattingRules page: #In-page hyperlinks are made by placing a named anchor and referring to the anchor in a hyperlink: * Named anchors: o #[foo]: An anchor around the text "foo" with id "foo". o #[|foo]: An empty anchor with id "foo". o #[howdy|foo]: An anchor around the text "howdy" with id "foo". * References to name anchors are made thusly: [##hyperlinks], [OtherPage#foo], [named|OtherPage#foo]. Voila. BTW, you can find this page by doing a full text search for "anchor" in any phpwiki (the TextFormattingRules page comes up in the search results). Rob. |