From 993dc6f97e60353c4184f28ac39e5c9c174010f6 Mon Sep 17 00:00:00 2001 From: CuteDog5695 Date: Fri, 25 Oct 2024 18:12:57 +0300 Subject: [PATCH] Update some parts --- src/docs/discord-verification/index.md | 2 +- src/docs/domain-structure/index.md | 6 ++---- src/docs/github-pages-verification/index.md | 2 +- src/docs/vercel/index.md | 2 +- 4 files changed, 5 insertions(+), 7 deletions(-) diff --git a/src/docs/discord-verification/index.md b/src/docs/discord-verification/index.md index 2427a150..f78aac76 100644 --- a/src/docs/discord-verification/index.md +++ b/src/docs/discord-verification/index.md @@ -31,7 +31,7 @@ Create a JSON file inside the `domains/` directory called `domains/_discord.exam "email": "email@address" }, "record": { - "TXT": "discord-verification-string" + "TXT": ["discord-verification-string"] } } ``` diff --git a/src/docs/domain-structure/index.md b/src/docs/domain-structure/index.md index c948f3a1..997b8913 100644 --- a/src/docs/domain-structure/index.md +++ b/src/docs/domain-structure/index.md @@ -137,7 +137,7 @@ Below are some examples for the given record types: ```json { "record": { - "TXT": "Hello World!" + "TXT": ["Hello World!"] } } ``` @@ -159,9 +159,7 @@ Below are some examples for the given record types: } } ``` -> [!NOTE] -> Note: Please refer to the [frequently asked questions](https://is-a.dev/docs/faq/) for clarification on what or who we allow NS records for. -If you want a example on what we want as the reasonings, you can [checkout this PR](https://github.com/is-a-dev/register/pull/16758). +Note: Please refer to the [frequently asked questions](https://is-a.dev/docs/faq/) for clarification on what or who we allow NS records for. If you want a example on what we want as the reasonings, you can [checkout this PR](https://github.com/is-a-dev/register/pull/16758). - **SRV** record: This must be a list of service records. Each record specifies the priority, weight, port, and target for a service on your domain. SRV records are often used for services such as VoIP, messaging, and more. ```json diff --git a/src/docs/github-pages-verification/index.md b/src/docs/github-pages-verification/index.md index 688a516f..7dbd14eb 100644 --- a/src/docs/github-pages-verification/index.md +++ b/src/docs/github-pages-verification/index.md @@ -33,7 +33,7 @@ Create a JSON file inside the `domains/` directory called `domains/hostname.json "email": "" }, "record": { - "TXT": "" + "TXT": [""] } } ``` diff --git a/src/docs/vercel/index.md b/src/docs/vercel/index.md index a4b631dd..63173b3e 100644 --- a/src/docs/vercel/index.md +++ b/src/docs/vercel/index.md @@ -20,7 +20,7 @@ When connecting the domain, you will be greeted with a TXT verification string. "discord": "insert-discord-user-ID-here" }, "record": { - "TXT": "insert-TXT-string-you-got-from-vercel-here" + "TXT": ["insert-TXT-string-you-got-from-vercel-here"] } } ```