Disallow blank space between [label] and ( in inline link. [jgm/peg-markdown]

See https://github.com/jgm/peg-markdown/commit/1a629de
This commit is contained in:
Michael Teichgräber 2013-01-23 22:09:53 +01:00
parent 4626c2b169
commit f42048b731

View File

@ -608,7 +608,7 @@ ReferenceLinkSingle = a:Label < (Spnl "[]")? >
}
}
ExplicitLink = l:Label Spnl '(' Sp s:Source Spnl t:Title Sp ')'
ExplicitLink = l:Label '(' Sp s:Source Spnl t:Title Sp ')'
{ $$ = p.mkLink(l.children, s.contents.str, t.contents.str)
s = nil
t = nil