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:
parent
4626c2b169
commit
f42048b731
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user