Changed a &NonAlphanumeric to a !Alphanumeric. [jgm/peg-markdown]

See https://github.com/jgm/peg-markdown/commit/c5a32d2
This commit is contained in:
Michael Teichgräber 2011-02-21 02:39:40 +01:00
parent 916983bf94
commit 43c0e8660d

View File

@ -688,7 +688,7 @@ EmDash = ("---" | "--")
SingleQuoteStart = '\'' ![)!\],.;:-? \t\n] !( ( "s" | "t" | "m" | "ve" | "ll" | "re" ) !Alphanumeric )
SingleQuoteEnd = '\'' &NonAlphanumeric
SingleQuoteEnd = '\'' !Alphanumeric
SingleQuoted = SingleQuoteStart
a:StartList