We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The descriptions of the options all show the options as taking one - sign, instead of 2, for example:
-
Named Arguments -make-iso Build a live iso Default: False
-make-iso should be --make-iso
-make-iso
--make-iso
Short version of the options show the same problem:
Named Arguments V show program's version number and exit
V should be -V
V
-V
The text was updated successfully, but these errors were encountered:
alex-rudakov/sphinx-argparse#80 may be related.
Sorry, something went wrong.
Yeah, seems like docutils is the actual problem - https://sourceforge.net/p/docutils/mailman/message/36221658/ I suppose I could post-process the manpages until a fix makes its way into Fedora.
If we're post-processing, sed -E "s/^\.B(\S)/\.B \1/gm would address the problem as I understand it.
sed -E "s/^\.B(\S)/\.B \1/gm
Upstream bug for this. https://sourceforge.net/p/docutils/bugs/380/
No branches or pull requests
The descriptions of the options all show the options as taking one
-
sign, instead of 2, for example:-make-iso
should be--make-iso
Short version of the options show the same problem:
V
should be-V
The text was updated successfully, but these errors were encountered: