DOCS: Clarification on quotes in TXT record. (#3721)

This commit is contained in:
Jeffrey Cafferata 2025-08-13 14:58:19 +01:00 committed by GitHub
parent ccc164a045
commit 60bbab6fa1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -3306,7 +3306,7 @@ declare function TTL(ttl: Duration): RecordModifier;
* TXT("@", "598611146-3338560"),
* TXT("listserve", "google-site-verification=12345"),
* TXT("multiple", ["one", "two", "three"]), // Multiple strings
* TXT("quoted", "any "quotes" and escapes? ugh; no worries!"),
* TXT("quoted", 'any "quotes" and escapes? ugh; no worries!'),
* TXT("_domainkey", "t=y; o=-;"), // Escapes are done for you automatically.
* TXT("long", "X".repeat(300)), // Long strings are split automatically.
* );

View file

@ -28,7 +28,7 @@ Modifiers can be any number of [record modifiers](https://docs.dnscontrol.org/la
TXT("@", "598611146-3338560"),
TXT("listserve", "google-site-verification=12345"),
TXT("multiple", ["one", "two", "three"]), // Multiple strings
TXT("quoted", "any "quotes" and escapes? ugh; no worries!"),
TXT("quoted", 'any "quotes" and escapes? ugh; no worries!'),
TXT("_domainkey", "t=y; o=-;"), // Escapes are done for you automatically.
TXT("long", "X".repeat(300)), // Long strings are split automatically.
);