Skip to content

Commit

Permalink
Simplified SingleQuoteStart.
Browse files Browse the repository at this point in the history
We no longer need to sort quotes from apostrophes, as this is now
done in Str.  This change allows things like '..quote' to parse
as single-quoted.
  • Loading branch information
jgm committed Apr 3, 2011
1 parent 4bb5083 commit 11d6864
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 = '\'' ![)!\],.;:-? \t\n]
SingleQuoteStart = '\''

SingleQuoteEnd = '\'' !Alphanumeric

Expand Down

0 comments on commit 11d6864

Please sign in to comment.