From 7388f730a3e28696867e490ff12d0ea3153fad57 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Wed, 28 Jun 2000 21:06:08 +0000 Subject: [PATCH] Support constant as a font name for the first column of a table using the tableii & friends markup family. --- Doc/perl/python.perl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Doc/perl/python.perl b/Doc/perl/python.perl index 8606ece970..6c0cddbb1d 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; } -- 2.40.0