Skip to content

Commit

Permalink
Require non-space after single quote start.
Browse files Browse the repository at this point in the history
Fixes bug in:

  Some countries' political leaders seek to exploit other countries'
  problems
  • Loading branch information
jgm committed Jun 22, 2011
1 parent 2b094dc commit 8fa228e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion markdown_parser.leg
Original file line number Diff line number Diff line change
Expand Up @@ -671,7 +671,7 @@ EnDash = '-' &Digit
EmDash = ("---" | "--")
{ $$ = mk_element(EMDASH); }

SingleQuoteStart = '\''
SingleQuoteStart = '\'' !(Spacechar | Newline)

SingleQuoteEnd = '\'' !Alphanumeric

Expand Down

0 comments on commit 8fa228e

Please sign in to comment.