Re: pretty_print

Jean-Francois LE BERRE <[email protected]> Mon, 5 Apr 2004 18:46:05 -0400
Newsgroups gmane.comp.jakarta.ecs.user
Message-ID <[email protected]>
On Mon, Apr 05 2004 18:39:12 -0400, Jean-Francois LE BERRE wrote:
> But... It's bad that it formats A tags like this:
> 
> <a href="myUrl">
>   myUrlName
> </a>
> 
> Because, in Mozilla, a space appears after the name, in the link. It
> looks a bit strange.

Here is an example of what I mean:

<a href="http://www.google.fr/">
	Google
</a>

<a href="http://www.yahoo.fr/">
	Yahoo
</a>

I don't want the space between the 2 links to be underlined. But it
is! Because of the format of A tags.
It should be:

<a href="http://www.google.fr/">Google</a>

<a href="http://www.yahoo.fr/">Yahoo</a>


I'm a bit perfectionist I know :-)