From: Jeff D. <da...@da...> - 2002-09-18 14:20:10
|
On 08 Aug 2002 01:11:23 -0300 Rodolfo Pilas <ro...@pi...> wrote: > Is there are any way to produce a index page with cross link references > like a index and titles? As of a couple a days ago, the CVS version supports this. # [Introduction|ThisPage#intro] # [First view|ThisPage#fv] !! #[|intro]Introduction ( => <a name="intro"></a>Introduction ) ..... !! #[First view|fv] ( => <a name="fv">First view</a> ) ..... Or you can use a more raw style: # [#Introduction] ( => <a href="#Introduction">#Introduction</a> ) # [#First View] ... !! #[Introduction] ( => <a name="Introduction">Introduction</a> ) Blah, blah.. !! #[First View] Blah, blah... PS: Good I wrote this response. I think I've just thought of a bug.... "First View" is not a valid name for an anchor.... |