AsciiDoc ignores single line breaks, so the synopsis of *getopt* _variant1_ *getopt* _variant2_ will render as one line in the manpage. Fix this by adding a blank line in between two rules, like we do elsewhere. This means that the manpage also has blank lines. *getopt* _variant1_ *getopt* _variant2_ Alternative solution: we could avoid the blank lines like below, but that'd be inconsistent with our other manpages. *getopt* _variant1_ + *getopt* _variant2_ + or, equivalently, use the verse[*] directive [verse] *getopt* _variant1_ *getopt* _variant2_ [*]: https://docs.asciidoctor.org/asciidoc/latest/blocks/verses/ Signed-off-by: Johannes Altmanninger <aclopte@xxxxxxxxx> --- misc-utils/getopt.1.adoc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/misc-utils/getopt.1.adoc b/misc-utils/getopt.1.adoc index 6cbdd5174..7a80b141e 100644 --- a/misc-utils/getopt.1.adoc +++ b/misc-utils/getopt.1.adoc @@ -14,7 +14,9 @@ getopt - parse command options (enhanced) == SYNOPSIS *getopt* _optstring_ _parameters_ + *getopt* [options] [*--*] _optstring_ _parameters_ + *getopt* [options] *-o*|*--options* _optstring_ [options] [*--*] _parameters_ == DESCRIPTION -- 2.35.1.301.gcdacdcff8b.dirty