From cb0fc9c2cef0b71d48cf92138fc130f87da7dd88 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Wed, 9 Aug 2000 13:45:04 +0000 Subject: fix_font(): Handle one more case for the magical first column of tables. --- Doc/perl/python.perl | 3 +++ 1 file changed, 3 insertions(+) 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 @@ sub fix_font{ elsif ($font eq 'constant') { $font = 'tt class="constant"'; } + elsif ($font eq 'kbd') { + $font = 'kbd'; + } return $font; } -- cgit v0.12