Re: a new release ?
Dumas Patrice <[email protected]> Mon, 16 Jun 2003 19:43:36 +0200
| Newsgroups | gmane.comp.tex.texi2html.devel |
|---|---|
| Message-ID | <[email protected]> |
> >The only issues I see are with some things within xrefs or nodes which
> >cause document to be invalid (as it causes hrefs to contain <pre> for
> >preformatted sections, <a> for anchor, footnote or index entries).
> >
>
> I don't understand. Could you provide some more detail?
I think examples are better:
If you have
@ref{First node, within ref a footnote @footnote{Putting footnotes in refs is bad}}
You will end up with
<a href="#SEC1">within ref a footnote <a name="DOCF2" href="#FOOT2">(2)</a></a>
which is not valid (no <a> allowed in <a>).
Similarly, if you have
@ref{First node,
@verbatim
verbatim text within a ref
@end verbatim
}
You end up with
<a href="#SEC1"><pre> some verbatim text within a ref </pre></a>
which is not valid (no <pre> allowed in <a>).
Those constructs are not terribly usefull, but makeinfo can process them
(texi2dvi cannot).
Pat