feat: Mermaid diagram rendering (#3)#22
Open
SyNeto wants to merge 1 commit into
Open
Conversation
- Add src/mermaid-renderer.ts — initializes mermaid with light/dark theme, finds pre code.language-mermaid blocks and replaces them with SVG - Import renderMermaidBlocks statically in content.ts; skip hljs on mermaid blocks - Add type-fest dev dependency to satisfy mermaid's type declarations - Rollup: inlineDynamicImports:true for IIFE format (mermaid has internal dynamic imports); bump targets to chrome120/firefox128 - tsconfig: remove skipLibCheck (type-fest satisfies the dependency properly) - Manifests: remove type:module (not needed with IIFE format) Lazy loading deferred to a future optimization — see issue for notes. Closes #3
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
Renders
```mermaidfenced code blocks as SVG diagrams using Mermaid v11, fully offline.src/mermaid-renderer.ts— findspre code.language-mermaidblocks, callsmermaid.render(), replaces each<pre>with the resulting SVGprefers-color-scheme— initializes Mermaid withtheme: 'dark'or'default'content.tsskipshljs.highlightElement()on mermaid blockstype-festinstalled to satisfy Mermaid's type declarations (avoidsskipLibCheck)inlineDynamicImports: trueto produce a single IIFE (Mermaid has internal dynamic imports incompatible with IIFE code-splitting)chrome120/firefox128Bundle size
content.bundle.jsSize increase is expected — Mermaid is a large library. Lazy loading optimization tracked separately.
Diagram types tested
flowchart, sequenceDiagram, gitGraph, stateDiagram-v2, pie
Known limitation
gist.githubusercontent.comserves content in a sandboxed frame that blocks script execution — Mermaid (and the extension itself) cannot run there.file://andraw.githubusercontent.comwork correctly.Closes #3