Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
Risk HIGH: Adds MJML documentation with a new content page, cross-references across multiple docs sections, and registers XML/MJML syntax highlighting in the shared CodeBlock.tsx component.
Reasons
components/ui/CodeBlock.tsxis modified — a.tsxfile incomponents/triggers HIGH risk per classification rulesCodeBlock.tsxis a shared, reusable component used across all code blocks site-wide (explicitly listed as a HIGH trigger)- New MDX page added at
content/integrations/email/mjml.mdx(78 lines, MEDIUM trigger) - Sidebar navigation modified in
data/sidebars/integrationsSidebar.ts(MEDIUM trigger) - Changes span four documentation sections:
content/integrations/,content/template-editor/,content/cli/, andcontent/tutorials/(MEDIUM trigger)
Notes
- The
CodeBlock.tsxchange is additive only (imports and registersxmlandmjmllanguages for syntax highlighting) and does not modify existing behavior, but since it affects a shared component, verify that existing code blocks still render correctly - Confirm MJML syntax highlighting renders as expected in the new
mjml.mdxpage's code block - Verify all internal links to
/integrations/email/mjmlresolve correctly from the various cross-reference points (layouts, email-templates FAQ, html-partials, CLI docs, and tutorial) - Check that the new sidebar entry appears in the correct position within the Email integrations section
- The new
mjml.mdxfile is missing a trailing newline (minor)
Sent by Cursor Automation: Docs PR classifier
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
emisilvacab
reviewed
Mar 18, 2026
cellomatt
approved these changes
Mar 18, 2026
Markdown link syntax is not processed inside JSX expressions in MDX, so [MJML support](/integrations/email/mjml) rendered as literal text. Replaced with an <a> tag to create a proper clickable link. Co-authored-by: Chris Bell <chris@cjbell.co>
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.



Description
MJML docs