[doc](readme) Fix missing Slack badge in localized README files#64644
[doc](readme) Fix missing Slack badge in localized README files#64644yifanwu-sys wants to merge 1 commit into
Conversation
|
Thank you for your contribution to Apache Doris. Please clearly describe your PR:
|
|
Thanks for the reminder. I have clarified the PR description below. What problem was fixed?This PR fixes a documentation rendering inconsistency in the README social media badge section. In some localized README files, the Slack link was written as an empty anchor: <a href="https://doris.apache.org/slack" height=25></a>Because the anchor did not contain an
How was it fixed?I added the missing Slack badge image element to the affected README files: <a href="https://doris.apache.org/slack"><img src="https://img.shields.io/badge/-Slack-4A154B?style=social&logo=slack" height=25 alt="Slack"></a>The change keeps the Slack badge consistent with the existing Twitter and Medium badges in the same social media section. What behavior was changed?Before this PR:
After this PR:
Why was it modified?The modification was made to fix the missing visual badge and keep the README social media section consistent across localized versions. Possible impactThis is a documentation-only change. It does not affect:
New featuresNo new feature is added. RefactoringNo code was refactored. OptimizationNo runtime or functional optimization was made. This PR only fixes the missing Slack badge image in README files. VerificationI verified that:
|
What problem does this PR solve?
Some README files had an empty Slack anchor in the social media badge section:
Because the anchor did not contain an
<img>element, the Slack badgewas not visible when the README was rendered.
What is changed?
This PR adds the missing Slack badge image to the affected README files,
following the existing correct implementation in
docs/zh-CN/README.mdand keeping it consistent with the adjacent social media badges.
Check
docs/zh-CN/README.mdwas left unchanged because it already had thecorrect badge.