Skip to content

Commit

Permalink
Merge pull request #940
Browse files Browse the repository at this point in the history
Use https in githu urls
  • Loading branch information
IOrlandoni authored Sep 23, 2019
2 parents 046b835 + 6c24348 commit 6110640
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/diagrams/info/parser/info.jison
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/** mermaid
* http://knsv.github.io/mermaid/
* https://knsv.github.io/mermaid
* (c) 2015 Knut Sveidqvist
* MIT license.
*/
Expand Down Expand Up @@ -45,4 +45,4 @@ statement
: showInfo { yy.setInfo(true); }
;

%%
%%
8 changes: 4 additions & 4 deletions src/diagrams/pie/parser/pie.jison
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/** mermaid
* http://knsv.github.io/mermaid/
* https://knsv.github.io/mermaid
* (c) 2015 Knut Sveidqvist
* MIT license.
*/
Expand Down Expand Up @@ -48,10 +48,10 @@ line
;

statement
: STR VALUE {
: STR VALUE {
console.log('str:'+$1+' value: '+$2)
yy.addSection($1,yy.cleanupValue($2)); }
| title {yy.setTitle($1.substr(6));$$=$1.substr(6);}
| title {yy.setTitle($1.substr(6));$$=$1.substr(6);}
;

%%
%%

0 comments on commit 6110640

Please sign in to comment.