# HG changeset patch # User Martin Geisler # Date 1256164224 -7200 # Node ID 816564f5dea93c635f795f1d6818de222f6cc5af # Parent 4515761ea531797bf1f742a6014779ac8e1a0334 rst2man: highlight inline literals in bold The old code would switch to Courier, but that doesn't really help much in a manpage. diff -r 4515761ea531 -r 816564f5dea9 doc/rst2man.py --- a/doc/rst2man.py Thu Oct 22 00:27:08 2009 +0200 +++ b/doc/rst2man.py Thu Oct 22 00:30:24 2009 +0200 @@ -212,7 +212,7 @@ 'indent' : ('.INDENT %.1f\n', '.UNINDENT\n'), 'definition_list_item' : ('.TP', ''), 'field_name' : ('.TP\n.B ', '\n'), - 'literal' : ('\\fC', '\\fP'), + 'literal' : ('\\fB', '\\fP'), 'literal_block' : ('.sp\n.nf\n.ft C\n', '\n.ft P\n.fi\n'), 'option_list_item' : ('.TP\n', ''),