This commit is contained in:
Kovid Goyal 2017-05-04 17:58:37 +05:30
parent 9965600b3b
commit 8f17d21390
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -233,7 +233,7 @@ def render_options(cmd, groups, options_header=True, add_program=True, header_le
def mark_options(raw):
raw = re.sub(r'(\s+)--(\s+)', r'\1``--``\2', raw)
raw = re.sub(r'(\s+)--(\s+)', ur'\1-\u200b-\2', raw)
def sub(m):
opt = m.group()