In PGbasicmacros, $LTS is defined to output < in HTML. Good.
And yet with the following MWE:
DOCUMENT();
loadMacros("PGstandard.pl");
BEGIN_TEXT
Write a vector like this: <a, b, c>
$BR
Write a vector like this: ${LTS}a,b,c${GTS}
END_TEXT
ENDDOCUMENT();
The places where $LTS and $GTS are used are coming out as literal < and >. The web browser then tries to parse the "tag" <a,b,c> and the user sees nothing there. So I think there is some translation step that is improperly converting < to < before the rendered problem is sent out.
In PGbasicmacros,
$LTSis defined to output<in HTML. Good.And yet with the following MWE:
The places where
$LTSand$GTSare used are coming out as literal<and>. The web browser then tries to parse the "tag"<a,b,c>and the user sees nothing there. So I think there is some translation step that is improperly converting<to<before the rendered problem is sent out.