summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRonny Berndt <ronny@apache.org>2022-12-12 18:29:43 +0100
committerGitHub <noreply@github.com>2022-12-12 18:29:43 +0100
commit641586116fc6f78228f203c04e8eca9660e2027f (patch)
treeb05b7223b8e5e7d37f079f368ce95ce10b68bb9c
parente02613e018f2850a73cf1cbd849e0d5deba467cb (diff)
downloadcouchdb-641586116fc6f78228f203c04e8eca9660e2027f.tar.gz
Fix rendering of inline literal with withespaces (#4301)
Fix wrong rendering of an inline literal with whitespaces. Use `:literal` as workaround, with esacpes whitespace `\ ` and added non-break-whitespace chars (U+00A0).
-rw-r--r--src/docs/src/api/server/authn.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/docs/src/api/server/authn.rst b/src/docs/src/api/server/authn.rst
index b4a4806a2..bffe0bf27 100644
--- a/src/docs/src/api/server/authn.rst
+++ b/src/docs/src/api/server/authn.rst
@@ -426,7 +426,7 @@ The ``jwt_keys`` section lists all the keys that this CouchDB server trusts. You
should ensure that all nodes of your cluster have the same list.
Since version 3.3 it's possible to use ``=`` in parameter names, but only when
-the parameter and value are separated `` = ``, i.e. the equal sign is
+the parameter and value are separated :literal:`\  = \ `, i.e. the equal sign is
surrounded by at least one space on each side. This might be useful in the
``[jwt_keys]`` section where base64 encoded keys may contain the ``=``
character.