Commit cb0fc9c2 authored by Fred Drake's avatar Fred Drake

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

parent 58100644
......@@ -950,6 +950,9 @@ sub fix_font{
elsif ($font eq 'constant') {
$font = 'tt class="constant"';
}
elsif ($font eq 'kbd') {
$font = 'kbd';
}
return $font;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment