Skip to content

Commit

Permalink
New documentation website: https://mermaidjs.github.io/
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerlong committed Aug 16, 2017
1 parent e0c732a commit e2b4fd4
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
10 changes: 5 additions & 5 deletions README.md
Expand Up @@ -130,11 +130,11 @@ yarn add mermaid

## Further reading

* [Usage](http://knsv.github.io/mermaid/#usage)
* [Flowchart syntax](http://knsv.github.io/mermaid/#flowcharts-basic-syntax)
* [Sequence diagram syntax](http://knsv.github.io/mermaid/#sequence-diagrams)
* [Mermaid client](http://knsv.github.io/mermaid/#mermaid-cli)
* [Demos](http://knsv.github.io/mermaid/#demos)
* [Usage](https://mermaidjs.github.io/usage.html)
* [Flowchart syntax](https://mermaidjs.github.io/flowchart.html)
* [Sequence diagram syntax](https://mermaidjs.github.io/sequenceDiagram.html)
* [Mermaid CLI](https://mermaidjs.github.io/mermaidCLI.html)
* [Demos](https://mermaidjs.github.io/demos.html)


# Request for assistance
Expand Down
2 changes: 1 addition & 1 deletion src/diagrams/classDiagram/parser/classDiagram.jison
@@ -1,5 +1,5 @@
/** mermaid
* http://knsv.github.io/mermaid/
* https://mermaidjs.github.io/
* (c) 2015 Knut Sveidqvist
* MIT license.
*/
Expand Down
4 changes: 2 additions & 2 deletions src/diagrams/example/parser/example.jison
@@ -1,5 +1,5 @@
/** mermaid
* http://knsv.github.io/mermaid/
* https://mermaidjs.github.io/
* (c) 2015 Knut Sveidqvist
* MIT license.
*/
Expand Down Expand Up @@ -50,4 +50,4 @@ message
: 'say' TXT { $$ = $1.substring(1).trim().replace(/\\n/gm, "\n"); }
;

%%
%%
8 changes: 4 additions & 4 deletions src/diagrams/flowchart/parser/flow.jison
@@ -1,5 +1,5 @@
/** mermaid
* http://knsv.github.io/mermaid/
* https://mermaidjs.github.io/
* (c) 2015 Knut Sveidqvist
* MIT license.
*/
Expand Down Expand Up @@ -192,10 +192,10 @@ graphConfig
ending: endToken ending
| endToken
;

endToken: NEWLINE | SPACE | EOF;
FirstStmtSeperator

FirstStmtSeperator
: SEMI | NEWLINE | spaceList NEWLINE ;


Expand Down
4 changes: 2 additions & 2 deletions src/diagrams/gantt/parser/gantt.jison
@@ -1,5 +1,5 @@
/** mermaid
* http://knsv.github.io/mermaid/
* https://mermaidjs.github.io/
* (c) 2015 Knut Sveidqvist
* MIT license.
*/
Expand Down Expand Up @@ -59,4 +59,4 @@ statement
| taskTxt taskData {yy.addTask($1,$2);$$='task';}
;

%%
%%
2 changes: 1 addition & 1 deletion src/diagrams/sequenceDiagram/parser/sequenceDiagram.jison
@@ -1,5 +1,5 @@
/** mermaid
* http://knsv.github.io/mermaid/
* https://mermaidjs.github.io/
* (c) 2014-2015 Knut Sveidqvist
* MIT license.
*
Expand Down

0 comments on commit e2b4fd4

Please sign in to comment.