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 // rebuild it using
// make nuke // make nuke
// make parser // make parser
needParserIfaceVersion = parserIfaceVersion_5 needParserIfaceVersion = parserIfaceVersion_6
) )
// Markdown Options: // Markdown Options:

View File

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

2
portid
View File

@ -1 +1 @@
163 164