commit | cb0fc9c2cef0b71d48cf92138fc130f87da7dd88 | [log] [tgz] |
---|---|---|
author | Fred Drake <fdrake@acm.org> | Wed Aug 09 13:45:04 2000 +0000 |
committer | Fred Drake <fdrake@acm.org> | Wed Aug 09 13:45:04 2000 +0000 |
tree | 7b4f3f12713d535467d097a8d0bd29d17f96036d | |
parent | 58100644763c172253925c1883ae43a69cfebae9 [diff] |
fix_font(): Handle one more case for the magical first column of tables.
diff --git a/Doc/perl/python.perl b/Doc/perl/python.perl index eb5c7c4..b1eb008 100644 --- a/Doc/perl/python.perl +++ b/Doc/perl/python.perl
@@ -950,6 +950,9 @@ elsif ($font eq 'constant') { $font = 'tt class="constant"'; } + elsif ($font eq 'kbd') { + $font = 'kbd'; + } return $font; }