From aa670e93369d6891a8236b1dee3e113796fde857 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Sat, 13 Dec 2014 21:05:04 -0800 Subject: Use typewriter font for signatures in man pages. --- man/make_man_page.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'man/make_man_page.py') diff --git a/man/make_man_page.py b/man/make_man_page.py index 34383fb..94c4d6a 100644 --- a/man/make_man_page.py +++ b/man/make_man_page.py @@ -3,7 +3,7 @@ # Creates a man page from a C file. # Comments beginning with `/**` are treated as Groff man, except that -# 'this' is converted to \fIthis\fR, and ''this'' to \fBthis\fR. +# 'this' is converted to \fIthis\f[], and ''this'' to \fBthis\f[]. # Non-blank lines immediately following a man page comment are treated # as function signatures or examples and parsed into .Ft, .Fo, .Fa, .Fc. The @@ -47,7 +47,7 @@ single_quote_re = re.compile("(?\\\\fR', re.sub(single_quote_re, '\\\\fI\g<1>\\\\fR', s)) + return re.sub(double_quote_re, '\\\\f[CB]\g<1>\\\\f[]', re.sub(single_quote_re, '\\\\f[CI]\g<1>\\\\f[]', s)) typedef = False mdlines = [] @@ -92,14 +92,14 @@ with open(sourcefile, 'r') as cmarkh: rawsig = ''.join(sig) m = function_re.match(rawsig) if m: - mdlines.append('\\fI' + m.group('type') + '\\fR' + ' ') - mdlines.append('\\fB' + m.group('name') + '\\fR' + '(') + mdlines.append('\\f[CI]' + m.group('type') + '\\f[]' + ' ') + mdlines.append('\\f[CB]' + m.group('name') + '\\f[]' + '(') first = True for argument in re.split(',', m.group('args')): if not first: mdlines.append(', ') first = False - mdlines.append('\\fI' + argument.strip() + '\\fR') + mdlines.append('\\f[CI]' + argument.strip() + '\\f[]') mdlines.append(')\n') else: mdlines.append('.nf\n\\f[C]\n.RS 0n\n') -- cgit v1.2.3