Hi mr.rodent, sir.
You use empty <anchor> tags along with <link> or <jump> or <fork>
e.g
<link href=#mysection>go to my section</link>
<!-- a bit further down in your document -->
<anchor id="mysection"/>
<section>
<tiltle>Appendix</title>
<p> <!-- your content here --> </p>
</section>
See the document v11 DTD usage page on
http://xml.apache.org/forrest/document-v11.html
-Buzz.
Rodent of Unusual Size wrote:
>i think i've found a bug in the transforming of something like
>this:
>
> <anchor id="foo">bar</anchor>
>
>into html. rather than getting
>
> <a name="foo">bar</a>
>
>i'm getting an empty anchor
>
> <a name="foo"></a>
>
>not desired behaviour, i suspect.. and certainly not expected,
>at least not by me..
>
>
|