fix:update-community-discussion-link#73
Conversation
Signed-off-by: Sbragul26 <[email protected]>
There was a problem hiding this comment.
Code Review
This pull request updates the discussion forum links in the README.md to point to the new URL (https://discuss.meshery.io). The reviewer noted that the anchor tags incorrectly use the 'alt' attribute, which is invalid for elements, and suggested replacing it with the 'title' attribute.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
| <a href="https://bestpractices.coreinfrastructure.org/projects/3564" alt="CLI Best Practices"> | ||
| <img src="https://bestpractices.coreinfrastructure.org/projects/3564/badge" /></a> | ||
| <a href="https://meshery.io/community#discussion-forums" alt="Discuss Users"> | ||
| <a href="https://discuss.meshery.io" alt="Discuss Users"> |
There was a problem hiding this comment.
The alt attribute is not a valid HTML attribute for anchor (<a>) tags. It is only valid on elements like <img>, <area>, and <input type="image">. To provide advisory information or a tooltip for the link, you should use the title attribute instead.
| <a href="https://discuss.meshery.io" alt="Discuss Users"> | |
| <a href="https://discuss.meshery.io" title="Discuss Users"> |
Notes for Reviewers
This PR updates the community discussion forum link by replacing the old URL with https://discuss.meshery.io.
Signed commits