fix: add missing space before 'GitHub releases page' link on download page - #4511
Conversation
… page The whitespace between 'Check the' and the anchor tag was being collapsed by HTML parsing, causing the text to render as 'Check theGitHub releases page' without a space.
|
Important Review skippedAuto reviews are disabled on this repository. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: Repository UI Review profile: CHILL Plan: Pro Plus 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 |
ApprovabilityVerdict: Approved Trivial spacing fix in static marketing page copy - adds a missing space before a link. No runtime behavior impact. You can customize Macroscope's approvability policy. Learn more. |
The whitespace between 'Check the' and the anchor tag was being collapsed by HTML parsing, causing the text to render as 'Check theGitHub releases page' instead of 'Check the GitHub releases page'.
Added
{" "}to force a space between the text and the link.Before: Looking for older versions? Check theGitHub releases page ↗
After: Looking for older versions? Check the GitHub releases page ↗
Note
Low Risk
Single-line marketing copy fix with no logic, API, or security impact.
Overview
Fixes a copy rendering bug on the download page where “Check the” ran directly into the GitHub releases link (
Check theGitHub releases page).Inserts an explicit
{" "}after “Check the” indownload.astro, matching the whitespace pattern already used on other marketing pages so HTML whitespace collapse does not eat the gap before the anchor.Reviewed by Cursor Bugbot for commit d4f0f7a. Bugbot is set up for automated code reviews on this repo. Configure here.
Note
Fix missing space before 'GitHub releases page' link on download page
Adds an explicit
{' '}space literal in download.astro between 'Check the' and the anchor element, fixing a rendering bug where the two ran together.Macroscope summarized d4f0f7a.