From 43c5b9aeb4be56ce39c0d34ffde03a57c909d10f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0pa=C4=8Dek?= Date: Mon, 2 Jun 2025 11:59:23 +0200 Subject: [PATCH] Fix link to TXT RRtype specification The odd-looking "\ " escape is required to italicize without italicizing the final "s". See reStructuredText Markup Specification, sections "Inline markup recognition rules" and "Escaping Mechanism". Most importantly: Escaped whitespace characters are removed from the output document together with the escaping backslash. This allows for character-level inline markup. --- bin/tools/named-rrchecker.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/tools/named-rrchecker.rst b/bin/tools/named-rrchecker.rst index 8604e045b6..ec80946027 100644 --- a/bin/tools/named-rrchecker.rst +++ b/bin/tools/named-rrchecker.rst @@ -141,7 +141,7 @@ Multi-token records echo -e 'IN TXT two words \\n' | named-rrchecker -p * Valid TXT RR with two unquoted words and trailing whitespace. * Output: ``IN TXT "two" "words"`` - * Two unquoted words in the input are treated as two ``s per :rfc:`1035#section-3.3.14`. + * Two unquoted words in the input are treated as two ``\ s per :rfc:`1035#section-3.3.14`. * Trailing whitespace is omitted from the last ``. echo -e 'IN TXT "two words" \\n' | named-rrchecker -p