fix_font(): Handle one more case for the magical first column of tables.

This commit is contained in:
Fred Drake 2000-08-09 13:45:04 +00:00
parent 5810064476
commit cb0fc9c2ce

View File

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