Conversation
Review or Edit in CodeSandboxOpen the branch in Web Editor • VS Code • Insiders |
🦋 Changeset detectedLatest commit: a31b565 The changes in this PR will be included in the next version bump. This PR includes changesets to release 4 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 7d89762119
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| inlineNodes.push(child); | ||
| }); |
There was a problem hiding this comment.
Split legacy
\n\n quote separators into paragraph blocks
Legacy flat blockquotes from the previous model encoded paragraph breaks as consecutive newline text nodes, but this normalization path appends every non-block child into one inline run and wraps it into a single p. On existing persisted values like [{text:'A'},{text:'\n'},{text:'\n'},{text:'B'}], normalization collapses structure to one paragraph (A\n\nB) instead of two block children, so migration loses block-level paragraph boundaries and no longer preserves the intended container shape.
Useful? React with 👍 / 👎.
🔀 PR #4941
🐛 Fixes #4898
🟢 95-100% confidence
🌐 Browser Check
http://localhost:3003/blocks/editor-aiand verified the seeded quote now renders a quoted list item plus a nested blockquote.http://localhost:3003/docs/blockquoteand verified the docs page shows nested blockquote example content plus the nested-block-content feature text.http://localhost:3003/docs/autoformatand verified the nested>guidance and wrap-based blockquote rule snippet render.http://localhost:3003/docs/examples/preview-markdownand verified the preview example shows> > Nested blockquote.and> - Quoted list item../Users/zbeyens/.dev-browser/tmp/editor-ai-nested-blockquote.png,/Users/zbeyens/.dev-browser/tmp/blockquote-docs-nested.png,/Users/zbeyens/.dev-browser/tmp/autoformat-docs-nested.png,/Users/zbeyens/.dev-browser/tmp/preview-markdown-nested.png✅ Outcome
apps/wwwsurfaces instead of leaving stale single-paragraph quote examples behind.apps/www/public/r/*.jsonoutputs so the rendered docs and demos match the source values.🏗️ Design
🧪 Verified
pnpm turbo build --filter=./apps/wwwpnpm turbo typecheck --filter=./apps/wwwpnpm lint:fixpnpm check