diff options
author | Fred Drake <fdrake@acm.org> | 2000-06-28 21:06:08 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-06-28 21:06:08 (GMT) |
commit | 7388f730a3e28696867e490ff12d0ea3153fad57 (patch) | |
tree | 32ab35574db3edbf56f7f2b0360486083dfc5228 /Doc | |
parent | eceebb87d925c36f2df99d2bd470354f16f45e39 (diff) | |
download | cpython-7388f730a3e28696867e490ff12d0ea3153fad57.zip cpython-7388f730a3e28696867e490ff12d0ea3153fad57.tar.gz cpython-7388f730a3e28696867e490ff12d0ea3153fad57.tar.bz2 |
Support constant as a font name for the first column of a table using the
tableii & friends markup family.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/perl/python.perl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/perl/python.perl b/Doc/perl/python.perl index 8606ece..6c0cddb 100644 --- a/Doc/perl/python.perl +++ b/Doc/perl/python.perl @@ -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; } |