Simplified SingleQuoteStart. [jgm/peg-markdown]

See https://github.com/jgm/peg-markdown/commit/11d6864
This commit is contained in:
Michael Teichgräber 2012-04-30 01:24:47 +02:00
parent 77a926239d
commit 01228db44b
3 changed files with 4 additions and 4 deletions

View File

@ -31,7 +31,7 @@ const (
// rebuild it using
// make nuke
// make parser
needParserIfaceVersion = parserIfaceVersion_5
needParserIfaceVersion = parserIfaceVersion_6
)
// Markdown Options:

View File

@ -28,7 +28,7 @@ import (
)
const (
parserIfaceVersion_5 = iota
parserIfaceVersion_6 = iota
)
// Semantic value of a parsing action.
@ -754,7 +754,7 @@ EnDash = '-' &Digit
EmDash = ("---" | "--")
{ $$ = p.mkElem(EMDASH) }
SingleQuoteStart = '\'' ![)!\],.;:-? \t\n]
SingleQuoteStart = '\''
SingleQuoteEnd = '\'' !Alphanumeric

2
portid
View File

@ -1 +1 @@
163
164