diff --git a/markdown.go b/markdown.go index 2e07004..e92a6c1 100644 --- a/markdown.go +++ b/markdown.go @@ -31,7 +31,7 @@ const ( // rebuild it using // make nuke // make parser - needParserIfaceVersion = parserIfaceVersion_8 + needParserIfaceVersion = parserIfaceVersion_9 ) // Markdown Options: diff --git a/parser.leg b/parser.leg index 19fcd5b..cbb1797 100644 --- a/parser.leg +++ b/parser.leg @@ -28,7 +28,7 @@ import ( ) const ( - parserIfaceVersion_8 = iota + parserIfaceVersion_9 = iota ) // Semantic value of a parsing action. @@ -397,7 +397,7 @@ HtmlBlockTr = HtmlBlockOpenTr (HtmlBlockTr | !HtmlBlockCloseTr .)* HtmlBlockClos HtmlBlockOpenScript = '<' Spnl ("script" | "SCRIPT") Spnl HtmlAttribute* '>' HtmlBlockCloseScript = '<' Spnl '/' ("script" | "SCRIPT") Spnl '>' -HtmlBlockScript = HtmlBlockOpenScript (HtmlBlockScript | !HtmlBlockCloseScript .)* HtmlBlockCloseScript +HtmlBlockScript = HtmlBlockOpenScript (!HtmlBlockCloseScript .)* HtmlBlockCloseScript HtmlBlockInTags = HtmlBlockAddress diff --git a/portid b/portid index fb402ef..b34c321 100644 --- a/portid +++ b/portid @@ -1 +1 @@ -169 +171