doc: convert git-imap-send synopsis and options to new style

Convert git-imap-send from [verse]/single-quote style to the modern synopsis-block style: - Replace [verse] with [synopsis] in SYNOPSIS block - Backtick-quote all OPTIONS terms - Backtick-quote all config keys in config/imap.adoc - Backtick-quote bare config key references in prose Signed-off-by: Jean-Noël Avila <jn.avila@free.fr> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Jean-Noël Avila committed Jul 19, 2026 at 19:54 UTC 077dd0de4384766e33f3aff2bac65597ab7255b1
2 files changed +6 -3
Documentation/config/imap.adoc
+1 -1
@@ -41,7 +41,7 @@
41 `imap.authMethod`::
42 Specify the authentication method for authenticating with the IMAP server.
43 If Git was built with the NO_CURL option, or if your curl version is older
44 - than 7.34.0, or if you're running git-imap-send with the `--no-curl`
44 + than 7.34.0, or if you're running `git-imap-send` with the `--no-curl`
45 option, the only supported methods are `PLAIN`, `CRAM-MD5`, `OAUTHBEARER`
46 and `XOAUTH2`. If this is not set then `git imap-send` uses the basic IMAP
47 plaintext `LOGIN` command.
Documentation/git-imap-send.adoc
+5 -2
@@ -192,7 +192,10 @@ supports only `XOAUTH2` as the mechanism.
192
193 Once the commits are ready to be sent, run the following command:
194
195 - $ git format-patch --cover-letter -M --stdout origin/master | git imap-send
195 +
196 +---------
197 +$ git format-patch --cover-letter -M --stdout origin/master | git imap-send
198 +---------
199
200 Just make sure to disable line wrapping in the email client (Gmail's web
201 interface will wrap lines no matter what, so you need to use a real
@@ -217,7 +220,7 @@ users may wish to visit this web page for more information:
220
221 SEE ALSO
222 --------
220 -linkgit:git-format-patch[1], linkgit:git-send-email[1], mbox(5)
223 +linkgit:git-format-patch[1], linkgit:git-send-email[1], `mbox`(5)
224
225 GIT
226 ---