Skip to content

A Jekyll plugin to simplify the creation of mermaid diagrams and flowcharts in your posts and pages.

License

Notifications You must be signed in to change notification settings

jasonbellamy/jekyll-mermaid

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Jekyll-mermaid

A Jekyll plugin to simplify the creation of mermaid diagrams and flowcharts in your posts and pages.

Installation

  1. Install the gem:
gem install jekyll-mermaid
  1. Add the gem to your Jekyll _config.yml:
gems: [jekyll-mermaid]

Please see the Jekyll documentation for more installation options.

Config

You'll need to update your _config.yml with the location of the mermaid source javascript file you want to use.

mermaid:
  src: 'path/to/mermaid.js'

Usage

Simply include the jekyll-mermaid block helper in any of your templates.

{% mermaid %}
graph TD;
    A-->B;
    A-->C;
    B-->D;
    C-->D;
{% endmermaid %}

Please see the mermaid documentation for more examples.

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality.

License

Copyright (c) 2014 Jason Bellamy Licensed under the MIT license.

About

A Jekyll plugin to simplify the creation of mermaid diagrams and flowcharts in your posts and pages.

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Languages