From 8b929322cb3e92d15e00cd736b7e256f1e447f01 Mon Sep 17 00:00:00 2001 From: Dusk Banks Date: Tue, 22 Feb 2022 10:55:19 -0800 Subject: [PATCH] defensively fix reStructuredText syntax a ` : ` (space, colon, space) like that can be confused for a definition list classifier, especially in a definition list, so prefer to backslash-escape the colon. see the "reStructedText Markup Specification", section "Syntax Details" > "Body Elements" > "Definition Lists". --- docs/usage.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/usage.rst b/docs/usage.rst index 79b4c5b..c5ea879 100644 --- a/docs/usage.rst +++ b/docs/usage.rst @@ -204,8 +204,8 @@ httptoken A personal authorization token used to fetch the url with the ``Authorization`` header. The type of token depends on the authorization required. - - For Bearer token set : ``Bearer `` - - For Basic token set : ``Basic `` + - For Bearer token set \: ``Bearer `` + - For Basic token set \: ``Basic `` In the keyfile add ``httptoken_{name}`` token.