From afe909c5edf35595b083a94d0d5bbb111385d113 Mon Sep 17 00:00:00 2001 From: Ishan Sarkar Date: Mon, 6 Jul 2026 20:19:02 +0530 Subject: [PATCH] Fix Slack badge link in README.md The Slack badge in README.md was not clickable because the link destination had a duplicated opening parenthesis: ]((https://www.kubeflow.org/docs/about/community/#kubeflow-slack-channels)) This caused the URL to be parsed incorrectly (including the stray parentheses), breaking the hyperlink so the badge displayed as a plain image instead of a link. Fix: remove the extra parenthesis so the badge correctly links to the Kubeflow Slack channels page. [![Slack](...)](https://www.kubeflow.org/docs/about/community/#kubeflow-slack-channels) Signed-off-by: Ishan Sarkar --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 85cdedab7f..8b37a96229 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ KubeFlow CNCF Landscape - [![Slack](https://img.shields.io/badge/Slack-4A154B?style=for-the-badge&logo=slack&logoColor=white)]((https://www.kubeflow.org/docs/about/community/#kubeflow-slack-channels)) + [![Slack](https://img.shields.io/badge/Slack-4A154B?style=for-the-badge&logo=slack&logoColor=white)](https://www.kubeflow.org/docs/about/community/#kubeflow-slack-channels) [![LinkedIn](https://img.shields.io/badge/linkedin-%230077B5.svg?style=for-the-badge&logo=linkedin&logoColor=white)](https://www.linkedin.com/company/kubeflow) [![YouTube](https://img.shields.io/badge/YouTube-%23FF0000.svg?style=for-the-badge&logo=YouTube&logoColor=white)](https://www.youtube.com/kubeflow) [![X](https://img.shields.io/badge/X-%23000000.svg?style=for-the-badge&logo=X&logoColor=white)](https://x.com/kubeflow/) @@ -278,4 +278,4 @@ Whenever any documents reference any source code, you should use the version sho https://github.com/kubeflow/kubeflow/blob/{{< params "githubbranch" >}}/scripts/gke/deploy.sh ``` -This ensures that all the links in a versioned webpage point to the correct branch. \ No newline at end of file +This ensures that all the links in a versioned webpage point to the correct branch.