]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Fix link to TXT RRtype specification
authorPetr Špaček <pspacek@isc.org>
Mon, 2 Jun 2025 09:59:23 +0000 (11:59 +0200)
committerPetr Špaček <pspacek@isc.org>
Mon, 2 Jun 2025 14:19:59 +0000 (14:19 +0000)
The odd-looking "\ " escape is required to italicize <character-string>
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

index 8604e045b69c62dcc45c9f32f352ed5c0b7e210a..ec809460278e157d56a859f9f3f149ff839977b4 100644 (file)
@@ -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 `<character-string>`s per :rfc:`1035#section-3.3.14`.
+  * Two unquoted words in the input are treated as two `<character-string>`s per :rfc:`1035#section-3.3.14`.
   * Trailing whitespace is omitted from the last `<character-string>`.
 
 echo -e 'IN TXT "two words" \\n' | named-rrchecker -p