diff --git a/src/diagrams/info/parser/info.jison b/src/diagrams/info/parser/info.jison index 10a74e9c7..473b63fcf 100644 --- a/src/diagrams/info/parser/info.jison +++ b/src/diagrams/info/parser/info.jison @@ -1,5 +1,5 @@ /** mermaid - * http://knsv.github.io/mermaid/ + * https://knsv.github.io/mermaid * (c) 2015 Knut Sveidqvist * MIT license. */ @@ -45,4 +45,4 @@ statement : showInfo { yy.setInfo(true); } ; -%% \ No newline at end of file +%% diff --git a/src/diagrams/pie/parser/pie.jison b/src/diagrams/pie/parser/pie.jison index 994f87264..be6fcf214 100644 --- a/src/diagrams/pie/parser/pie.jison +++ b/src/diagrams/pie/parser/pie.jison @@ -1,5 +1,5 @@ /** mermaid - * http://knsv.github.io/mermaid/ + * https://knsv.github.io/mermaid * (c) 2015 Knut Sveidqvist * MIT license. */ @@ -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);} ; -%% \ No newline at end of file +%%