docs: format README for consistent Markdown style#10551
Conversation
Normalize horizontal rules, blank lines around headings and code blocks, list markers, nested list indentation, and trailing whitespace without changing content.
RockteMQ-AI
left a comment
There was a problem hiding this comment.
Review by github-manager-bot
Summary
Pure Markdown formatting cleanup of README.md — normalizes horizontal rules, adds blank lines before fenced code blocks, unifies list markers to *, and fixes nested list indentation. No content changes.
Findings
- [Info]
README.md:34— Horizontal rule normalized from-----------(variable length) to---. Good consistency improvement. - [Info]
README.md:46,65,75,86— Blank lines added before fenced code blocks. This follows CommonMark spec recommendation and improves rendering consistency across Markdown parsers. - [Info]
README.md:88-92— Windows setup steps changed from-to*list markers for consistency with the rest of the document. Good. - [Info]
README.md:93-97— Nested list indentation changed from tab to 2-space. This is the correct approach for nested lists in CommonMark.
Assessment
✅ Looks good. All changes are formatting-only with no content modifications. The PR improves Markdown consistency and rendering quality. The diff is clean and easy to verify.
Suggestions
- Minor: consider adding a
.markdownlintor.editorconfigconfig to enforce these formatting rules going forward and prevent future inconsistencies. This is optional and out of scope for this PR.
Automated review by github-manager-bot
RockteMQ-AI
left a comment
There was a problem hiding this comment.
Review by github-manager-bot
Summary
Formats the README.md for consistent Markdown style: removes extra blank lines, adds blank lines before fenced code blocks (per CommonMark spec), converts Windows instructions from dash-list to asterisk-list, and normalizes the horizontal rule.
Findings
- [Info]
README.md— All changes are purely cosmetic/formatting. No content is added or removed. - [Info] Adding blank lines before fenced code blocks is correct per CommonMark/GFM spec — some renderers require it for proper parsing.
- [Info] Converting the Windows steps from
-items to*items improves consistency with the rest of the document.
Suggestions
- No functional concerns. One minor note: the horizontal rule change from
-----------to---is purely stylistic — both render identically in most Markdown parsers.
Verdict
Clean formatting improvement. LGTM.
Automated review by github-manager-bot
Summary
---and spacing around section headings*list markers (including Windows setup steps) and 2-space nested list indentation for remoting clientsContent (links, versions, commands, community projects) is unchanged.
Test plan
README.mddiff for formatting-only changes