aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2004-11-11 05:42:13 +0000
committerFred Drake <fdrake@acm.org>2004-11-11 05:42:13 +0000
commitc6864832d70e2fbf05cad555269b1423e40ab73b (patch)
treebe63f2b9ead393d26aebc00f7ffc8b322c099940
parentReplace last two uses of the "list" environment with "description" (diff)
downloadcpython-c6864832d70e2fbf05cad555269b1423e40ab73b.tar.gz
cpython-c6864832d70e2fbf05cad555269b1423e40ab73b.tar.bz2
cpython-c6864832d70e2fbf05cad555269b1423e40ab73b.zip
add a comment explaining a particular text transformation
-rw-r--r--Doc/perl/python.perl3
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/perl/python.perl b/Doc/perl/python.perl
index a0cb70cc720..48e311563fd 100644
--- a/Doc/perl/python.perl
+++ b/Doc/perl/python.perl
@@ -158,6 +158,9 @@ sub do_cmd_hackscore{
sub codetext($){
my $text = "$_[0]";
+ # Make sure that "---" is not converted to "--" later when
+ # LaTeX2HTML tries converting em-dashes based on the conventional
+ # TeX font ligatures:
$text =~ s/--/-\&#45;/go;
return $text;
}