You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A Slack community link in the documentation is formatted with misordered Markdown syntax, causing the link to render as plain text instead of a hyperlink.
The correct Markdown format is [text](url), but the docs contain (text)[url] in at least one place.
Reference PR (closed): docs: Fix Slack community link formatting in documentation — demonstrates the issue and proposed fix.
See: #5388
- If you encounter any issues, please talk to us at our (Slack- community)[https://slack.keephq.dev].+ If you encounter any issues, please talk to us at our [Slack community](https://slack.keephq.dev).
Steps to reproduce
Open the page Running Keep with LiteLLM in the docs.
Locate the paragraph with the Slack community reference.
Observe that the link does not render as a clickable hyperlink if the broken format is present.
Expected behavior
Links should render correctly using [Slack community](https://slack.keephq.dev) syntax.
Actual behavior
The text shows up as plain text with parentheses/brackets in the wrong order, and the link is not clickable.
Suggested fix
Fix all occurrences of misordered Markdown: change (Text)[URL] → [Text](URL).
Add a CI check for Markdown links to prevent regressions (e.g. markdown-link-check GitHub Action) to detect broken links and malformed syntax.
Optionally run a one-time grep to discover similar patterns across the docs:
git grep -nE '\([^\)]*\)\[[^\]]*\]' -- docs/ | sed 's/^/Suspicious link syntax: /'
Summary
A Slack community link in the documentation is formatted with misordered Markdown syntax, causing the link to render as plain text instead of a hyperlink.
The correct Markdown format is
[text](url), but the docs contain(text)[url]in at least one place.Reference PR (closed): docs: Fix Slack community link formatting in documentation — demonstrates the issue and proposed fix.
See: #5388
Affected location(s)
File:
docs/deployment/local-llm/keep-with-litellm.mdxDiff context (PR #5388):
Steps to reproduce
Expected behavior
[Slack community](https://slack.keephq.dev)syntax.Actual behavior
Suggested fix
(Text)[URL]→[Text](URL).markdown-link-checkGitHub Action) to detect broken links and malformed syntax.Notes
Labels:
type:bugarea:documentationpriority:low