This package has been deprecated

Author message:

This project has been renamed to gatsby-remark-flowchart. Install using gatsby-remark-flowchart instead.

gatsby-remark-flowchat

0.0.1 • Public • Published

gatsby-remark-graph

Make nice graphs in your markdown files in gatsbyjs, using mermaid.

Here is a basic demo, which also uses my starter template.

install

npm install --save gatsby-transformer-remark gatsby-remark-graph

How to use

// In your gatsby-config.js
plugins: [
  {
    resolve: 'gatsby-transformer-remark',
    options: {
      plugins: [
        {
          resolve: 'gatsby-remark-graph',
          options: {
            // this is the language in your code-block that triggers mermaid parsing
            language: 'mermaid', // default
            theme: 'default' // could also be dark, forest, or neutral
          }
        }
      ]
    }
  }
]

Make sure you put it before other plugins (especially those that work with code blocks, like prism.)

Usage in Markdown

```mermaid
graph LR
    A[Square Rect] -- Link text --> B((Circle))
    A --> C(Round Rect)
    B --> D{Rhombus}
    C --> D
```

Will give you a graph that looks like this:

diagram

Package Sidebar

Install

npm i gatsby-remark-flowchat

Weekly Downloads

1

Version

0.0.1

License

MIT

Last publish

Collaborators

  • liudonghua123