]> granicus.if.org Git - python/commitdiff
Support constant as a font name for the first column of a table using the
authorFred Drake <fdrake@acm.org>
Wed, 28 Jun 2000 21:06:08 +0000 (21:06 +0000)
committerFred Drake <fdrake@acm.org>
Wed, 28 Jun 2000 21:06:08 +0000 (21:06 +0000)
tableii & friends markup family.

Doc/perl/python.perl

index 8606ece970c960152036f11a802bc46a75471e92..6c0cddbb1d95dbae288a6cc2418563b68499ceba 100644 (file)
@@ -943,6 +943,9 @@ sub fix_font{
     elsif ($font eq 'member') {
         $font = 'tt class="member"';
     }
+    elsif ($font eq 'constant') {
+        $font = 'tt class="constant"';
+    }
     return $font;
 }