>>Date: Tue, 27 Jun 2000 17:26:03 -0700
>>To: [EMAIL PROTECTED]
>>From: noyes <[EMAIL PROTECTED]>
>>Subject: Re: Export as HTML...
>>
>>I hate to keep bugging list members about this, but I'm still unable to
>>properly "Export as HTML" with latex2html. The URL's in the document aren't
>>converted into hyper-links.
>>
>>I know I've done something wrong, but I can't seem to figure out how to fix
>>the problem. Would one of you kind souls take a look at the document, and
>>give me a hint?
>>
>>The "Linux Router Questions and Answers" document is available as
>>individual files or tarball at:
>>
>>http://www.mindspring.com/~pnoyes/
Everythink seems OK in your document, the problem is that \htmlurl[bar]{foo}
doesn't do anything for html2latex, which need an explicit command from
the html.sty package to produce the URL.
There are two such commands in latex2html97.1:
\htmladdnormallink{anchor}{URL}
prints anchor in latex, produces <A HREF="<URL>">anchor</A> in html
\htmladdnormallinkfoot{<URL>}{anchor}
produces the URL as a footnote in addition in the LaTeX document.
Semms that substitution of \htmlurl[#1]{#2} by \htmladdnormallink{#1}{#2}
should do what you need.
Regards
--
Jean-Pierre