]> granicus.if.org Git - python/commitdiff
avoid the inane markup generated by LaTeX2HTML for \LaTeX; that simply
authorFred Drake <fdrake@acm.org>
Sat, 13 Nov 2004 01:20:24 +0000 (01:20 +0000)
committerFred Drake <fdrake@acm.org>
Sat, 13 Nov 2004 01:20:24 +0000 (01:20 +0000)
doesn't look right in HTML

Doc/perl/python.perl

index e956e15f1da6c2588c5a7d4efbcf041c093a6259..08c23ba4fb581e6b3679c4938f56d735dbe8a386 100644 (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]; }