feat: render Mermaid diagrams as inline SVGs at build time#24
Open
kamikaze011001 wants to merge 12 commits intoShipWithAI:developfrom
Open
feat: render Mermaid diagrams as inline SVGs at build time#24kamikaze011001 wants to merge 12 commits intoShipWithAI:developfrom
kamikaze011001 wants to merge 12 commits intoShipWithAI:developfrom
Conversation
refactor url
fix: update vercel.json redirects to use regex capture groups for 301 redirects
fix: self-host fonts to fix digit rendering issue for some Chrome users
Server-side SVG approach using rehype-mermaid + Playwright. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
rehype-mermaid renders SVGs with hardcoded light-mode colors. In dark mode (the default), connector arrows (stroke:#333333) are invisible against the dark background. Wrapping the SVG in a light card (background-color: #f8fafc) fixes visibility for all elements. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Internal brainstorming specs and implementation plans should not live in the project repo. Moving to local-only (gitignored). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
[/compact] and [/text] node labels are parsed as unclosed parallelogram shapes in Mermaid, silently dropping entire page content via rehype-mermaid. Also fixes backslash-pipe (\|) in unquoted node labels. Wrap all affected node labels in double quotes to prevent misparse. Fixes: Interfaces & Modes, Slash Commands, Context Optimization (EN + VI). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
|
Someone is attempting to deploy a commit to the Ethan Nguyen's projects Team on Vercel. A member of the Team first needs to authorize it. |
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.
Summary
rehype-mermaid+ Playwright to render Mermaid code blocks as inline SVGs at build time (server-side, no JS needed in browser)postinstallscript so Vercel installs Playwright Chromium automatically during deploymentTest plan
npm run buildcompletes without errors — all Mermaid blocks become<svg>elements, not raw code blocks🤖 Generated with Claude Code