diff --git a/build/generate/featureMatrix.go b/build/generate/featureMatrix.go index f23d05a4a..db1e45970 100644 --- a/build/generate/featureMatrix.go +++ b/build/generate/featureMatrix.go @@ -38,7 +38,7 @@ func markdownTable(matrix *FeatureMatrix) (string, error) { featureMap := matrix.Providers[providerName] var tableDataRow []string - tableDataRow = append(tableDataRow, "[`"+providerName+"`](providers/"+strings.ToLower(providerName)+".md)") + tableDataRow = append(tableDataRow, "[`"+providerName+"`](provider/"+strings.ToLower(providerName)+".md)") for _, featureName := range matrix.Features { tableDataRow = append(tableDataRow, featureEmoji(featureMap, featureName)) } diff --git a/commands/types/dnscontrol.d.ts b/commands/types/dnscontrol.d.ts index fe89377d1..01d2246dd 100644 --- a/commands/types/dnscontrol.d.ts +++ b/commands/types/dnscontrol.d.ts @@ -2407,7 +2407,7 @@ declare function R53_EVALUATE_TARGET_HEALTH(enabled: boolean): RecordModifier; /** * `R53_ZONE` lets you specify the AWS Zone ID for an entire domain ([`D()`](../top-level-functions/D.md)) or a specific [`R53_ALIAS()`](../domain-modifiers/R53_ALIAS.md) record. * - * When used with [`D()`](../top-level-functions/D.md), it sets the zone id of the domain. This can be used to differentiate between split horizon domains in public and private zones. See this [example](../../providers/route53.md#split-horizon) in the [Amazon Route 53 provider page](../../providers/route53.md). + * When used with [`D()`](../top-level-functions/D.md), it sets the zone id of the domain. This can be used to differentiate between split horizon domains in public and private zones. See this [example](../../provider/route53.md#split-horizon) in the [Amazon Route 53 provider page](../../provider/route53.md). * * When used with [`R53_ALIAS()`](../domain-modifiers/R53_ALIAS.md) it sets the required Route53 hosted zone id in a R53_ALIAS record. See [`R53_ALIAS()`](../domain-modifiers/R53_ALIAS.md) documentation for details. * @@ -2546,7 +2546,7 @@ declare function REVCOMPAT(rfc: string): string; * * Most providers automatically generate SOA records. They will ignore any `SOA()` statements. * * The mbox field should not be set to a real email address unless you love spam and hate your privacy. * - * There is more info about `SOA` in the documentation for the [BIND provider](../../providers/bind.md). + * There is more info about `SOA` in the documentation for the [BIND provider](../../provider/bind.md). * * @see https://docs.dnscontrol.org/language-reference/domain-modifiers/soa */ diff --git a/docs/_layouts/default.html b/docs/_layouts/default.html index 1aa9bff60..18db05159 100644 --- a/docs/_layouts/default.html +++ b/docs/_layouts/default.html @@ -37,7 +37,7 @@