Skip to content

Commit

Permalink
Fix for being able to use the character v in node ids as described in…
Browse files Browse the repository at this point in the history
… issue #192
  • Loading branch information
knsv committed Jul 23, 2015
1 parent 80912ff commit 3ec7c6d
Show file tree
Hide file tree
Showing 3 changed files with 96 additions and 43 deletions.
6 changes: 4 additions & 2 deletions src/diagrams/flowchart/parser/flow.jison
Original file line number Diff line number Diff line change
Expand Up @@ -277,8 +277,10 @@ alphaNumStatement
{$$=$1;}
| alphaNumToken
{$$=$1;}
| alphaNumToken MINUS alphaNumToken
{$$=$1+'-'+$3;}
| DOWN
{$$='v';}
| MINUS
{$$='-';}
;

link: linkStatement arrowText
Expand Down
Loading

0 comments on commit 3ec7c6d

Please sign in to comment.