All Projects → eFrane → Vuepress Plugin Mermaidjs

eFrane / Vuepress Plugin Mermaidjs

Vuepress plugin for mermaid.js diagrams

Programming Languages

javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to Vuepress Plugin Mermaidjs

Sketch Copy Paste Shadows
Copy & paste only shadow styles from layers without others styles getting in the way.
Stars: ✭ 38 (-15.56%)
Mutual labels:  plugin
Virtualapp
Virtual Engine for Android(Support 12.0 in business version)
Stars: ✭ 8,413 (+18595.56%)
Mutual labels:  plugin
Sublimall Server
Server behind Sublimall SublimeText plugin
Stars: ✭ 43 (-4.44%)
Mutual labels:  plugin
Header
Header Tool for Editor.js 2.0
Stars: ✭ 39 (-13.33%)
Mutual labels:  plugin
Plugface
Next generation Java general purpose plugin framework
Stars: ✭ 41 (-8.89%)
Mutual labels:  plugin
Marked
Confluence macro plugin which renders remote Markdown.
Stars: ✭ 42 (-6.67%)
Mutual labels:  plugin
Fluent Bit Go Loki
[Deprecated] The predessor of fluent-bit output plugin for Loki. https://github.com/grafana/loki
Stars: ✭ 38 (-15.56%)
Mutual labels:  plugin
Dotenv Webpack
A secure webpack plugin that supports dotenv and other environment variables and only exposes what you choose and use.
Stars: ✭ 1,022 (+2171.11%)
Mutual labels:  plugin
Gatsby Source Instagram All
⚛️📸 Gatsby source plugin for fetching all your instagram posts
Stars: ✭ 42 (-6.67%)
Mutual labels:  plugin
Yoast Seo For Typo3
Yoast SEO plugin for TYPO3
Stars: ✭ 43 (-4.44%)
Mutual labels:  plugin
Cm3d2.maidfiddler
A real-time game editor for CM3D2
Stars: ✭ 39 (-13.33%)
Mutual labels:  plugin
Terraform Nextjs Plugin
A plugin to generate terraform configuration for Nextjs 8 and 9
Stars: ✭ 41 (-8.89%)
Mutual labels:  plugin
Artifactory Debian
🔧 📦 Tools to use Artifactory as a Debian (APT) repository, and dput DEB packages into it, or upload them to Bintray.
Stars: ✭ 42 (-6.67%)
Mutual labels:  plugin
Unitypluginwithwsl
Unity native plugin with WSL (Windows Subsystem for Linux)
Stars: ✭ 39 (-13.33%)
Mutual labels:  plugin
Baseplug
MVC audio plugin framework for rust
Stars: ✭ 44 (-2.22%)
Mutual labels:  plugin
Wp Shopify
🎉 Sell and build custom Shopify experiences on WordPress.
Stars: ✭ 38 (-15.56%)
Mutual labels:  plugin
Objection Unique
Unique validation for Objection.js
Stars: ✭ 42 (-6.67%)
Mutual labels:  plugin
Fworldgenerator
Procedural world generator (plugin) for Unreal Engine 4
Stars: ✭ 45 (+0%)
Mutual labels:  plugin
Elasticsearch Ukrainian Lemmatizer
Ukrainian lemmatizer plugin for ElasticSearch
Stars: ✭ 44 (-2.22%)
Mutual labels:  plugin
Jellyfin Plugin Lastfm
LastFM plugin for the Jellyfin media system. Fork of the Emby Last.FM plug-in
Stars: ✭ 43 (-4.44%)
Mutual labels:  plugin

npm version Build Status

VuePress Plugin for mermaid.js

Use mermaid.js Diagrams in VuePress

This VuePress plugin provides a global component wrapping mermaid.js. The plugin is designed to work with VuePress v1.x.

Main documentation site is at vuepress-plugin-mermaidjs.efrane.com.

Installation

You can install it with

yarn add -D vuepress-plugin-mermaidjs

or

npm install --save-dev vuepress-plugin-mermaidjs

Then you just need to register the plugin in your .vuepress/config.js:

module.exports = {
    // ...
    plugins: [
        'vuepress-plugin-mermaidjs'
    ]
    // ...
}

Usage

The recommended usage is to place your mermaidjs diagrams inside a fenced code block with the language 'mermaid':

```mermaid
sequenceDiagram
Alice->John: Hello John, how are you?
loop every minute
    John-->Alice: Great!
end
```
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].