avoid the inane markup generated by LaTeX2HTML for \LaTeX; that simply

doesn't look right in HTML
This commit is contained in:
Fred Drake 2004-11-13 01:20:24 +00:00
parent aee4da6b83
commit 9103ec5afd

View file

@ -106,8 +106,8 @@ sub do_cmd_sub{
# words typeset in a special way (not in HTML though)
sub do_cmd_ABC{ 'ABC' . $_[0]; }
sub do_cmd_UNIX{ '<span class="Unix">Unix</span>'
. $_[0]; }
sub do_cmd_UNIX{ '<span class="Unix">Unix</span>' . $_[0]; }
sub do_cmd_LaTeX{ '<span class="LaTeX">LaTeX</span>' . $_[0]; }
sub do_cmd_ASCII{ 'ASCII' . $_[0]; }
sub do_cmd_POSIX{ 'POSIX' . $_[0]; }
sub do_cmd_C{ 'C' . $_[0]; }