Support constant as a font name for the first column of a table using the

tableii & friends markup family.
This commit is contained in:
Fred Drake 2000-06-28 21:06:08 +00:00
parent eceebb87d9
commit 7388f730a3

View file

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