PREV UP NEXT texi2www user's guide

3.3: @href{text,node,file,URL}

Use @href{text,node,file,URL} when you want a hypertext link in an HTML document and plain text everywhere else.

Text is the text you want displayed in the document. Node,file, and URL indicate what text is linked to. Node and file are a normal texinfo style node reference; URL is a HTML URL. One of node or URL must be specified (if both are specified, URL is used).

The texinfo source used to create this document contains numerous examples of how @href might be used.

texinfo.tex (in /usr/local/lib/tex/macros on my machine) needs to be modified in order to use @href{}. All I did was insert

\def\href#1{\hrefX[#1,,,]}
\def\hrefX[#1,#2,#3,#4]{#1}

before the \def\pxref line (line 3497 ???).