]> granicus.if.org Git - python/commitdiff
fix_font(): Handle one more case for the magical first column of tables.
authorFred Drake <fdrake@acm.org>
Wed, 9 Aug 2000 13:45:04 +0000 (13:45 +0000)
committerFred Drake <fdrake@acm.org>
Wed, 9 Aug 2000 13:45:04 +0000 (13:45 +0000)
Doc/perl/python.perl

index eb5c7c4739753b3de236f40f3ffe70e925124794..b1eb008cbed778c9a7ef0fdc65a10e28109f0f9e 100644 (file)
@@ -950,6 +950,9 @@ sub fix_font{
     elsif ($font eq 'constant') {
         $font = 'tt class="constant"';
     }
+    elsif ($font eq 'kbd') {
+        $font = 'kbd';
+    }
     return $font;
 }