0.2.0 • Published 7 months ago

@theguild/remark-mermaid v0.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

@theguild/remark-mermaid

Created by Dimitri POSTOLOV https://twitter.com/B2o5T.

Maintained by The Guild https://twitter.com/TheGuildDev.

Remark plugin for replacing `mermaid code blocks with react <Mermaid /> component.

  • Support MDX2

  • Support both dark and light themes. Listening for the dark class on the <html /> element and updating the mermaid's theme accordingly

Install

npm i @theguild/remark-mermaid

Usage

Follow code will be converted to a mermaid diagram.

// my-page.mdx

```mermaid
graph TD;
subgraph AA [Consumers]
A[Mobile app];
B[Web app];
C[Node.js client];
end
subgraph BB [Services]
E[REST API];
F[GraphQL API];
G[SOAP API];
end
Z[GraphQL API];
A --> Z;
B --> Z;
C --> Z;
Z --> E;
Z --> F;
Z --> G;
```
0.2.0

7 months ago

0.1.3

10 months ago

0.1.0

11 months ago

0.1.2

11 months ago

0.1.1

11 months ago

0.0.7

12 months ago

0.0.6

1 year ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago