mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-09-04 20:24:23 +08:00
DOCS: Clarification on quotes in TXT record. (#3721)
This commit is contained in:
parent
ccc164a045
commit
60bbab6fa1
2 changed files with 2 additions and 2 deletions
2
commands/types/dnscontrol.d.ts
vendored
2
commands/types/dnscontrol.d.ts
vendored
|
@ -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.
|
||||
* );
|
||||
|
|
|
@ -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.
|
||||
);
|
||||
|
|
Loading…
Add table
Reference in a new issue