]> git.ipfire.org Git - thirdparty/git.git/commitdiff
git-cat-file.txt: fix list continuations rendering literally
authorMartin Ågren <martin.agren@gmail.com>
Wed, 18 Jan 2023 08:27:49 +0000 (09:27 +0100)
committerJunio C Hamano <gitster@pobox.com>
Wed, 18 Jan 2023 16:24:39 +0000 (08:24 -0800)
With Asciidoctor, all of the '+' introduced in a797c0ea04 ("cat-file:
add mailmap support to --batch-check option", 2022-12-20) render
literally rather than functioning as list continuations. With asciidoc,
this renders just fine. It's not too surprising that there is room for
ambiguity and surprises here, since we have lists within lists.

Simply replacing all of these '+' with empty lines makes this render
fine using both tools. Except, in the third hunk, where after this inner
'*' list ends, we want to continue with more contents of the outer list
item (`--batch-command=<format>`). We can solve any ambiguity here and
make this clear to both tools by wrapping the inner list in an open
block (using "--").

For consistency, let's wrap all three of these inner lists from
a797c0ea04 in open blocks. This also future-proofs us a little -- if we
ever gain more contents after any of those first two lists, as we did
already in a797c0ea04 for the third list, we're prepared and should
render fine with both asciidoc and Asciidoctor from the start.

Signed-off-by: Martin Ågren <martin.agren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/git-cat-file.txt

index 830f0a2efff95bc1b48bf9b1cbec7b6f481be2f2..411de2e27ddc0db762ec9be6ceec18a7fc1bf069 100644 (file)
@@ -93,47 +93,52 @@ OPTIONS
        Print object information and contents for each object provided
        on stdin. May not be combined with any other options or arguments
        except `--textconv`, `--filters`, or `--use-mailmap`.
-       +
++
+--
        * When used with `--textconv` or `--filters`, the input lines
          must specify the path, separated by whitespace. See the section
          `BATCH OUTPUT` below for details.
-       +
+
        * When used with `--use-mailmap`, for commit and tag objects, the
          contents part of the output shows the identities replaced using the
          mailmap mechanism, while the information part of the output shows
          the size of the object as if it actually recorded the replacement
          identities.
+--
 
 --batch-check::
 --batch-check=<format>::
        Print object information for each object provided on stdin. May not be
        combined with any other options or arguments except `--textconv`, `--filters`
        or `--use-mailmap`.
-       +
++
+--
        * When used with `--textconv` or `--filters`, the input lines must
         specify the path, separated by whitespace. See the section
         `BATCH OUTPUT` below for details.
-       +
+
        * When used with `--use-mailmap`, for commit and tag objects, the
          printed object information shows the size of the object as if the
          identities recorded in it were replaced by the mailmap mechanism.
+--
 
 --batch-command::
 --batch-command=<format>::
        Enter a command mode that reads commands and arguments from stdin. May
        only be combined with `--buffer`, `--textconv`, `--use-mailmap` or
        `--filters`.
-       +
++
+--
        * When used with `--textconv` or `--filters`, the input lines must
          specify the path, separated by whitespace. See the section
          `BATCH OUTPUT` below for details.
-       +
+
        * When used with `--use-mailmap`, for commit and tag objects, the
          `contents` command shows the identities replaced using the
          mailmap mechanism, while the `info` command shows the size
          of the object as if it actually recorded the replacement
          identities.
-
+--
 +
 `--batch-command` recognizes the following commands:
 +