-
This works:
http://knsv.github.io/mermaid/live_editor/#/edit/Z3JhcGggTFIKICAgIGlkMShDbGljayBtZSkKCmNsaWNrIGlkMSAiaHR0cDovL3d3dy5leGFtcGxlLmNvbSIgIkNsaWNrIHRvIGdvIHRvIGV4YW1wbGUgVVJMIg
This does …
-
By adding a shebang line to the first line of the diagrams we should be able to build them by executing them.
```
#!/usr/bin/env mermad
```
The are lots of tools that allow this use case, the trick …
-
Anyone know of a golang one ?
Outputting svg with golang is very easy as well as pdf.
It's just a matter of finding a parser to parse the mermaid markdown.
Ultimately I want to use this to allow …
-
On current OS X 10.11, with XCode 7.3, and nvm it seems that we cannot run the tests.
```
nvm install 4.2
nvm use 4.1
npm test
```
The outcome can be read at https://gist.github.com/ssbarnea/649ab88…
-
Following npm warning was reported while executing `npm install`.
```
npm WARN deprecated phantomjs@2.1.7: Package renamed to phantomjs-prebuilt. Please update 'phantomjs' package references to 'pha…
-
I install `mermaid` with command `$ npm install mermaid -g` . When I run it with command `mermaid $ftest_ile` I got this error:
![2017-01-19 4 48 25 pm](https://cloud.githubusercontent.com/assets/884…
-
@ssbarnea thanks for your help in issue #329, I am experiencing problems on an ubuntu machine. Here are the three commands I am running:
```
apt-get install -y nodejs
npm install npm@latest -g
n…
-
graph LR
A[Hard edge] -->|Link text| B(Round edge)
B --> C{Decision}
C -->|One| D[Result one]
C -->|Two| E[Result two]
-
`mermaid -v filename.mmd` gives `You must specify at least one source file.` which is clearly against the documentation:
```
Usage: mermaid [options] ...
```
-
Hi,
First of all thanks for putting together mermaid; i would like to see whether mermaid can support any interactivity on the shapes. Lets say we have a square box which represents a task; based o…