Skip to content

Commit 011176a

Browse files
authored
Merge pull request #3479 from Blargian/enable_linkchecker
Enable link checker
2 parents d715e96 + 00773b7 commit 011176a

5 files changed

+16
-16
lines changed

docs/about-us/index.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ description: "Landing page for About ClickHouse"
99
In this section of the docs you'll find information about ClickHouse. Refer to
1010
the table of contents below for a list of pages in this section of the docs.
1111

12-
| Page | Description |
13-
|-------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
14-
| [What is ClickHouse](/docs/about-clickhouse) | Introduces ClickHouse's core features, architecture, and uses, providing a concise overview for new users. |
15-
| [Adopters](/docs/adopters) | A list of companies using ClickHouse and their success stories, assembled from public sources |
16-
| [Support](/docs/about-us/support) | An introduction to ClickHouse Cloud Support Services and their mission. |
17-
| [Beta Features and Experimental](/docs/beta-and-experimental-features) | Learn about how ClickHouse uses "Beta" and "Experimental" labels to distinguish between officially supported and early-stage, unsupported features due to varied development speeds from community contributions. |
18-
| [Cloud Service](/docs/about-us/cloud) | Discover ClickHouse Cloud - a fully managed service that allows users to spin up open-source ClickHouse databases and offers benefits like fast time to value, seamless scaling, and serverless operations. |
19-
| [ClickHouse History](/docs/about-us/history) | Learn more about the history of ClickHouse. |
12+
| Page | Description |
13+
|------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
14+
| [What is ClickHouse](/about-clickhouse) | Introduces ClickHouse's core features, architecture, and uses, providing a concise overview for new users. |
15+
| [Adopters](/about-us/adopters) | A list of companies using ClickHouse and their success stories, assembled from public sources |
16+
| [Support](/about-us/support) | An introduction to ClickHouse Cloud Support Services and their mission. |
17+
| [Beta Features and Experimental](/beta-and-experimental-features) | Learn about how ClickHouse uses "Beta" and "Experimental" labels to distinguish between officially supported and early-stage, unsupported features due to varied development speeds from community contributions. |
18+
| [Cloud Service](/about-us/cloud) | Discover ClickHouse Cloud - a fully managed service that allows users to spin up open-source ClickHouse databases and offers benefits like fast time to value, seamless scaling, and serverless operations. |
19+
| [ClickHouse History](/about-us/history) | Learn more about the history of ClickHouse. |

docusaurus.config.en.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ const config = {
4848
// url: process.env.VERCEL_URL ? `https://${process.env.VERCEL_URL}` : 'https://bookish-disco-5997zvo.pages.github.io',
4949
baseUrl: "/docs/",
5050
baseUrlIssueBanner: true,
51-
onBrokenLinks: "warn",
51+
onBrokenLinks: "throw",
5252
onBrokenMarkdownLinks: "warn",
5353
onDuplicateRoutes: "throw",
54-
onBrokenAnchors: "warn",
54+
onBrokenAnchors: "throw",
5555
favicon: "img/docs_favicon.ico",
5656
organizationName: "ClickHouse",
5757
trailingSlash: false,

docusaurus.config.jp.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ const config = {
4848
// url: process.env.VERCEL_URL ? `https://${process.env.VERCEL_URL}` : 'https://bookish-disco-5997zvo.pages.github.io',
4949
baseUrl: "/docs/jp/",
5050
baseUrlIssueBanner: true,
51-
onBrokenLinks: "warn",
51+
onBrokenLinks: "throw",
5252
onBrokenMarkdownLinks: "warn",
5353
onDuplicateRoutes: "throw",
54-
onBrokenAnchors: "warn",
54+
onBrokenAnchors: "throw",
5555
favicon: "img/docs_favicon.ico",
5656
organizationName: "ClickHouse",
5757
trailingSlash: false,

docusaurus.config.ru.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ const config = {
4848
// url: process.env.VERCEL_URL ? `https://${process.env.VERCEL_URL}` : 'https://bookish-disco-5997zvo.pages.github.io',
4949
baseUrl: "/docs/ru/",
5050
baseUrlIssueBanner: true,
51-
onBrokenLinks: "warn",
51+
onBrokenLinks: "throw",
5252
onBrokenMarkdownLinks: "warn",
5353
onDuplicateRoutes: "throw",
54-
onBrokenAnchors: "warn",
54+
onBrokenAnchors: "throw",
5555
favicon: "img/docs_favicon.ico",
5656
organizationName: "ClickHouse",
5757
trailingSlash: false,

docusaurus.config.zh.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ const config = {
4848
// url: process.env.VERCEL_URL ? `https://${process.env.VERCEL_URL}` : 'https://bookish-disco-5997zvo.pages.github.io',
4949
baseUrl: "/docs/zh/",
5050
baseUrlIssueBanner: true,
51-
onBrokenLinks: "warn",
51+
onBrokenLinks: "throw",
5252
onBrokenMarkdownLinks: "warn",
5353
onDuplicateRoutes: "throw",
54-
onBrokenAnchors: "warn",
54+
onBrokenAnchors: "throw",
5555
favicon: "img/docs_favicon.ico",
5656
organizationName: "ClickHouse",
5757
trailingSlash: false,

0 commit comments

Comments
 (0)