diff --git a/docs/.vitepress/transformer.ts b/docs/.vitepress/transformer.ts
index 283fc4343..fb5f76cd4 100644
--- a/docs/.vitepress/transformer.ts
+++ b/docs/.vitepress/transformer.ts
@@ -383,5 +383,15 @@ function transformLinks(text: string): string {
/\[Telegram\]\(([^\)]*?)\)/gm,
''
)
+ // Transform Gitlab links to icons
+ .replace(
+ /\[GitLab\]\(([^\)]*?)\)/gm,
+ ''
+ )
+ // Fallback for GitHub
+ .replace(
+ /\[Gitlab\]\(([^\)]*?)\)/gm,
+ ''
+ )
return _text
}