mirror of
https://gerrit.googlesource.com/git-repo
synced 2024-12-21 07:16:21 +00:00
Support a level 2 heading in help description text
The level 2 headings (denoted by ~) indent the heading two spaces, but continue to use the bold formatter to offset them from the other surrounding text. Signed-off-by: Shawn O. Pearce <sop@google.com>
This commit is contained in:
parent
d63bbf44dc
commit
938d608c9c
@ -107,7 +107,7 @@ See 'repo help --all' for a complete list of recognized commands.
|
|||||||
body = body.strip()
|
body = body.strip()
|
||||||
body = body.replace('%prog', me)
|
body = body.replace('%prog', me)
|
||||||
|
|
||||||
asciidoc_hdr = re.compile(r'^\n?([^\n]{1,})\n(={2,}|-{2,})$')
|
asciidoc_hdr = re.compile(r'^\n?([^\n]{1,})\n([=~-]{2,})$')
|
||||||
for para in body.split("\n\n"):
|
for para in body.split("\n\n"):
|
||||||
if para.startswith(' '):
|
if para.startswith(' '):
|
||||||
self.write('%s', para)
|
self.write('%s', para)
|
||||||
@ -117,9 +117,19 @@ See 'repo help --all' for a complete list of recognized commands.
|
|||||||
|
|
||||||
m = asciidoc_hdr.match(para)
|
m = asciidoc_hdr.match(para)
|
||||||
if m:
|
if m:
|
||||||
self.heading('%s', m.group(1))
|
title = m.group(1)
|
||||||
|
type = m.group(2)
|
||||||
|
if type[0] in ('=', '-'):
|
||||||
|
p = self.heading
|
||||||
|
else:
|
||||||
|
def _p(fmt, *args):
|
||||||
|
self.write(' ')
|
||||||
|
self.heading(fmt, *args)
|
||||||
|
p = _p
|
||||||
|
|
||||||
|
p('%s', title)
|
||||||
self.nl()
|
self.nl()
|
||||||
self.heading('%s', ''.ljust(len(m.group(1)),'-'))
|
p('%s', ''.ljust(len(title),type[0]))
|
||||||
self.nl()
|
self.nl()
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user