fix: correct new line chars in mdx#31789
Conversation
Replace blank lines that contained a single trailing space with truly empty lines. Pure whitespace cleanup with no rendered output change; makes the files cleaner under any MDX parser.
|
This pull request requires reviews from CODEOWNERS as it changes files that match the following patterns:
|
There was a problem hiding this comment.
Review Summary
This is a clean, mechanical whitespace-only change that removes trailing spaces from blank lines across 24 MDX files.
What changes:
- Replaces space-only blank lines with truly empty blank lines
- Affects changelog entries, docs pages, and partials across multiple products
- No rendered output change expected
Checks performed:
- Frontmatter: Not modified (safe)
- Links: Not touched
- Style guide: No violations introduced; this change actually improves conformance
- MDX parsing: Space-only lines and empty lines behave identically in MDX, so this is structurally safe
- Size: XS (mechanical cleanup)
Labels applied: , ,
Non-blocking observation:
- is missing a trailing newline at EOF (pre-existing, not introduced by this PR). Consider fixing in a follow-up or adding it here since the file is already being touched.
There was a problem hiding this comment.
Review Summary
This is a clean, mechanical whitespace-only change that removes trailing spaces from blank lines across 24 MDX files.
What changes:
- Replaces space-only blank lines with truly empty blank lines
- Affects changelog entries, docs pages, and partials across multiple products
- No rendered output change expected
Checks performed:
- Frontmatter: Not modified (safe)
- Links: Not touched
- Style guide: No violations introduced; this change actually improves conformance
- MDX parsing: Space-only lines and empty lines behave identically in MDX, so this is structurally safe
- Size: XS (mechanical cleanup)
Labels applied: documentation, quick win, size/xs
Non-blocking observation:
src/content/changelog/workers-ai/2025-10-02-deepgram-flux.mdxis missing a trailing newline at EOF (pre-existing, not introduced by this PR). Consider fixing in a follow-up or adding it here since the file is already being touched.
|
Done. PR #31789 reviewed and approved. Summary:
The change is safe to merge. |
Review✅ No issues found in commit Code ReviewThis code review is in beta and may not always be helpful — use your judgment. No code review issues found. ConventionsChecks PR title, description, and redirect checklist. No convention issues found. Style Guide ReviewNo style-guide issues found. RedirectsNo missing redirect entries found. CommandsOnly codeowners can run commands. Post a comment with the command to trigger it.
|
Replace blank lines that contained a single trailing space with truly empty lines. Pure whitespace cleanup with no rendered output change; makes the files cleaner under any MDX parser, Satteri or otherwise.