fix(seo): remove duplicate frontmatter block from ad-requirements#24
Closed
bblietz wants to merge 1 commit intorokudev:v2.0from
Closed
fix(seo): remove duplicate frontmatter block from ad-requirements#24bblietz wants to merge 1 commit intorokudev:v2.0from
bblietz wants to merge 1 commit intorokudev:v2.0from
Conversation
The file had two identical YAML frontmatter blocks at the top, the result of a CMS-export accident. Standard Markdown/MDX parsers either skip the second block or fail. Keeping only the first block fixes rendering and unblocks the SEO frontmatter backfill pipeline (PR #0 of the SEO sweep).
Author
|
Closing as redundant: commit e66b8db (this PR's fix) is already in |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
docs/DEVELOPER/advertising/ad-requirements.mdcontained two identical YAML frontmatter blocks back-to-back, the result of a CMS-export accident. Standard Markdown/MDX parsers either skip the second block or fail. Removing the duplicate fixes rendering and unblocks an internal SEO-frontmatter-backfill pipeline that pre-flights the corpus and treatsfrontmatter_count != 1as a blocker.Diff
1 file changed, 12 deletions(-)— only the duplicate frontmatter block (lines 13-24 in the original file) was removed. No other content modified.Verification
Before:
frontmatter_count = 2(duplicate block detected)After:
frontmatter_count = 1, file renders normally with one frontmatter block followed by body content starting on the line immediately after.Context
This is PR #0 of an SEO frontmatter backfill effort that will populate
metadata.title,metadata.description, andexcerptacross all ~582 docs pages over a series of follow-up PRs. PR #0 fixes the one corpus pre-condition that prevented automated processing of this file.🤖 Generated with Claude Code