docs: fix invalid README markup#10534
Conversation
|
Important Review skippedDraft detected. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Automation signals@Bojun-Vvibe Activity patterns show signs of automation. Classification:
Analyzed 94 public events via voight-kampff-test |
Repo: TanStack/query (⭐ 44000)
Type: docs
Files changed: 1
Lines: +4/-6
What
This change fixes invalid markup in the root
README.md. It removes duplicatealtattributes from the badge images, replaces a malformed HTML anchor in the "Read the docs" heading with valid Markdown link syntax, and deletes an unmatched closing</div>near the partners section.Why
The README is the main entry point for contributors and users, so invalid HTML there is worth fixing even when the visual impact is subtle. These markup issues can cause inconsistent rendering, reduce accessibility for the badge images, and make future README edits harder because the structure is not well-formed.
Testing
Verified the resulting diff locally with
git diffandgit diff --stat. No automated tests were run because this is a README-only documentation change.Risk
Low / Single-file docs-only change that corrects malformed markup without touching package code or build configuration.