We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 775ce88 commit d7a50cfCopy full SHA for d7a50cf
scripts/gen-man.py
@@ -143,14 +143,14 @@ def generateManPage():
143
144
# short option (-opt)
145
if "short" in keyList:
146
- print(f"\-{ option['short'] }", end="")
+ print(f"\\-{ option['short'] }", end="")
147
# if also have a long option, print a comma
148
if "long" in keyList:
149
print(", ", end="")
150
151
# long option (--option)
152
153
- print(f"\-\-{ option['long'] }", end="")
+ print(f"\\-\\-{ option['long'] }", end="")
154
155
print(endBold, end=" ")
156
0 commit comments