I have upgraded from latex2html96.1 to latex2html98.1p1
and found some curious things happen inside the
rawhtml-environment.
There's is a snippet of LaTeX appended that runs with 96.1
but not with 98.1
I found it depends on the changes in html.sty with the
changes introduced in 1997. In 96.1 it was possible to
have percent signs inside brackets inside the rawhtml environment
but with the 98.1 html.sty the closing bracket is not
found when there is a percent sign in between.
And I believe this to be quite common with source codes...
?????
Is there anyone who might give me some advice how other than
commenting out the renewcommand in html.sty 98.1
would lead to success?
I would like to have the example handled correctly this way
in the 98.1 version also (without patching the html.sty).
What do the developers say to fixing this in a next version?
?????
Regards,
Claus-Peter
% To illustrate the problem...
%
% This works with html.sty from 96.1 but not with that from 98.1
% Just comment out in html.sty (in 98.1):
%
% \renewcommand{\excludecomment}[1]{%
% \csname newenvironment\endcsname{#1}{\@gobbleenv}{}}
% and it also works with 98.1.
%
\documentclass{report}
\usepackage{html}
%\usepackage{html98}
%\usepackage{html96}
\begin{document}
\begin{rawhtml}
<PRE>
{
invoke [.t index {@%x,%y}]
}
</PRE>
\end{rawhtml}
\end{document}