ReST: link bookmark

Sergio Spina sergio.am.spina at gmail.com
Sun Apr 17 06:14:41 EDT 2016


Il giorno domenica 17 aprile 2016 12:04:38 UTC+2, Sergio Spina ha scritto:
> I would know what is the way to implement in ReST a link bookmark like in this example:
> 
> > <html>
> > <body>
> >
> > <p>This text stand for an example of text containing
> > a <a name="B3Pa9-5ZRIx-1">bookmarked target</span> bookmark.</p>
> >
> > <p>So let's go all together to visit the bookmarked target
> > clicking on <a href="#B3Pa9-5ZRIx-1">this link</a>.</p>
> >
> > </body>
> > </html>
> 
> The string that is the name of the anchor is produced by an algorithm and 1) cannot be left away and 2) cannot be seen in the printed document.
> 
> Thanks.

The correct example is:

> <html>
> <body>
>
> <p>This text stand for an example of text containig
> a <a name="B3Pa9-5ZRIx-1">target</a> bookmark.</p>
>
> <p>So let's go all together to visit the target clicking
> on <a href="#B3Pa9-5ZRIx-1">this link</a>.</p>
>
> </body>
> </html>

Sorry for the mispelling.



More information about the Python-list mailing list