From de26a20b1700e8765e25f7710c7f3ed4e134a77f Mon Sep 17 00:00:00 2001 From: Shaun Struwig <41984034+Blargian@users.noreply.github.com> Date: Thu, 12 Jun 2025 18:38:47 +0200 Subject: [PATCH 1/3] ignore markdown links for spelling --- scripts/check-doc-aspell | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/check-doc-aspell b/scripts/check-doc-aspell index a922daaf615..c731d0a72a9 100755 --- a/scripts/check-doc-aspell +++ b/scripts/check-doc-aspell @@ -89,6 +89,7 @@ preprocess_file() { # Print lines only if not in frontmatter !in_frontmatter { print } ' "$file" \ + | sed -E 's/\[[^\]]*\]\([^)]*\)//g' \ | sed -E 's/\{#[^}]*\}//g' \ | sed -E 's/<[A-Za-z0-9_]+svg[^>]*\/?>//g' \ | sed -E 's/]*\/?>//g' \ From 1db0ffd4e21f6624c603907a258286c0a7aaba4c Mon Sep 17 00:00:00 2001 From: Shaun Struwig <41984034+Blargian@users.noreply.github.com> Date: Thu, 12 Jun 2025 18:40:20 +0200 Subject: [PATCH 2/3] test change --- docs/quick-start.mdx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/quick-start.mdx b/docs/quick-start.mdx index 5a2453efba3..ff2263f79ef 100644 --- a/docs/quick-start.mdx +++ b/docs/quick-start.mdx @@ -16,6 +16,8 @@ import {VerticalStepper} from '@clickhouse/click-ui/bundled'; **Welcome to ClickHouse!** +["Migrating Agents"](/use-cases/observability/clickstack/migration/elastic/migrating-agents). + In this quick-start tutorial, we'll get you set up in 8 easy steps. You'll download an appropriate binary for your OS, learn to run ClickHouse server, and use the ClickHouse client to create a table, From aa2744ec4ac8217375e9ffe07ccd10fd3d5e7590 Mon Sep 17 00:00:00 2001 From: Shaun Struwig <41984034+Blargian@users.noreply.github.com> Date: Thu, 12 Jun 2025 18:41:18 +0200 Subject: [PATCH 3/3] test change --- scripts/check-doc-aspell | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/check-doc-aspell b/scripts/check-doc-aspell index c731d0a72a9..a922daaf615 100755 --- a/scripts/check-doc-aspell +++ b/scripts/check-doc-aspell @@ -89,7 +89,6 @@ preprocess_file() { # Print lines only if not in frontmatter !in_frontmatter { print } ' "$file" \ - | sed -E 's/\[[^\]]*\]\([^)]*\)//g' \ | sed -E 's/\{#[^}]*\}//g' \ | sed -E 's/<[A-Za-z0-9_]+svg[^>]*\/?>//g' \ | sed -E 's/]*\/?>//g' \