From 9dcd8c793ad564101bd541545034faccd62818f5 Mon Sep 17 00:00:00 2001 From: Jeffrey Cafferata Date: Mon, 3 Jun 2024 20:31:47 +0200 Subject: [PATCH] DOCS: AUTODNSSEC_* improvements (#2984) --- commands/types/dnscontrol.d.ts | 10 +++++----- .../domain-modifiers/AUTODNSSEC_OFF.md | 4 ++-- .../domain-modifiers/AUTODNSSEC_ON.md | 6 +++--- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/commands/types/dnscontrol.d.ts b/commands/types/dnscontrol.d.ts index 79f8b921e..ab1fc41e7 100644 --- a/commands/types/dnscontrol.d.ts +++ b/commands/types/dnscontrol.d.ts @@ -247,24 +247,24 @@ declare function AKAMAICDN(name: string, target: string, ...modifiers: RecordMod declare function ALIAS(name: string, target: string, ...modifiers: RecordModifier[]): DomainModifier; /** - * AUTODNSSEC_OFF tells the provider to disable AutoDNSSEC. It takes no + * `AUTODNSSEC_OFF` tells the provider to disable AutoDNSSEC. It takes no * parameters. * - * See `AUTODNSSEC_ON` for further details. + * See [`AUTODNSSEC_ON`](AUTODNSSEC_ON.md) for further details. * * @see https://docs.dnscontrol.org/language-reference/domain-modifiers/autodnssec_off */ declare const AUTODNSSEC_OFF: DomainModifier; /** - * AUTODNSSEC_ON tells the provider to enable AutoDNSSEC. + * `AUTODNSSEC_ON` tells the provider to **enable** AutoDNSSEC. * - * AUTODNSSEC_OFF tells the provider to disable AutoDNSSEC. + * [`AUTODNSSEC_OFF`](AUTODNSSEC_OFF.md) tells the provider to **disable** AutoDNSSEC. * * AutoDNSSEC is a feature where a DNS provider can automatically manage * DNSSEC for a domain. Not all providers support this. * - * At this time, AUTODNSSEC_ON takes no parameters. There is no ability + * At this time, `AUTODNSSEC_ON` takes no parameters. There is no ability * to tune what the DNS provider sets, no algorithm choice. We simply * ask that they follow their defaults when enabling a no-fuss DNSSEC * data model. diff --git a/documentation/language-reference/domain-modifiers/AUTODNSSEC_OFF.md b/documentation/language-reference/domain-modifiers/AUTODNSSEC_OFF.md index c2e91fe5c..1c4677042 100644 --- a/documentation/language-reference/domain-modifiers/AUTODNSSEC_OFF.md +++ b/documentation/language-reference/domain-modifiers/AUTODNSSEC_OFF.md @@ -2,7 +2,7 @@ name: AUTODNSSEC_OFF --- -AUTODNSSEC_OFF tells the provider to disable AutoDNSSEC. It takes no +`AUTODNSSEC_OFF` tells the provider to disable AutoDNSSEC. It takes no parameters. -See `AUTODNSSEC_ON` for further details. +See [`AUTODNSSEC_ON`](AUTODNSSEC_ON.md) for further details. diff --git a/documentation/language-reference/domain-modifiers/AUTODNSSEC_ON.md b/documentation/language-reference/domain-modifiers/AUTODNSSEC_ON.md index 7a848193f..907954e28 100644 --- a/documentation/language-reference/domain-modifiers/AUTODNSSEC_ON.md +++ b/documentation/language-reference/domain-modifiers/AUTODNSSEC_ON.md @@ -2,14 +2,14 @@ name: AUTODNSSEC_ON --- -AUTODNSSEC_ON tells the provider to enable AutoDNSSEC. +`AUTODNSSEC_ON` tells the provider to **enable** AutoDNSSEC. -AUTODNSSEC_OFF tells the provider to disable AutoDNSSEC. +[`AUTODNSSEC_OFF`](AUTODNSSEC_OFF.md) tells the provider to **disable** AutoDNSSEC. AutoDNSSEC is a feature where a DNS provider can automatically manage DNSSEC for a domain. Not all providers support this. -At this time, AUTODNSSEC_ON takes no parameters. There is no ability +At this time, `AUTODNSSEC_ON` takes no parameters. There is no ability to tune what the DNS provider sets, no algorithm choice. We simply ask that they follow their defaults when enabling a no-fuss DNSSEC data model.