2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-29 13:38:26 +00:00

Fix link to TXT RRtype specification

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.
This commit is contained in:
Petr Špaček 2025-06-02 11:59:23 +02:00
parent 46173778ce
commit 43c5b9aeb4

View File

@ -141,7 +141,7 @@ Multi-token records
echo -e 'IN TXT two words \\n' | named-rrchecker -p echo -e 'IN TXT two words \\n' | named-rrchecker -p
* Valid TXT RR with two unquoted words and trailing whitespace. * Valid TXT RR with two unquoted words and trailing whitespace.
* Output: ``IN TXT "two" "words"`` * 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>`. * Trailing whitespace is omitted from the last `<character-string>`.
echo -e 'IN TXT "two words" \\n' | named-rrchecker -p echo -e 'IN TXT "two words" \\n' | named-rrchecker -p