mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-22 01:29:04 +01:00
Fixes markdown link syntax highlighting bug (#38328)
Issue: #38049 Signed-off-by: Shivam Mittal <shivammittal99@gmail.com>
This commit is contained in:
committed by
Matt Bierner
parent
d234464152
commit
5fd4061806
@@ -3266,7 +3266,6 @@
|
||||
<string>(?x:
|
||||
(\!\[)((?<square>[^\[\]\\]|\\.|\[\g<square>*+\])*+)(\])
|
||||
# Match the link text.
|
||||
([ ])? # Space not allowed
|
||||
(\() # Opening paren for url
|
||||
(<?)(\S+?)(>?) # The url
|
||||
[ \t]* # Optional whitespace
|
||||
@@ -3578,7 +3577,6 @@
|
||||
<string>(?x:
|
||||
(\[)((?<square>[^\[\]\\]|\\.|\[\g<square>*+\])*+)(\])
|
||||
# Match the link text.
|
||||
([ ])? # Space not allowed
|
||||
(\() # Opening paren for url
|
||||
(<?)(.*?)(>?) # The url
|
||||
[ \t]* # Optional whitespace
|
||||
|
||||
Reference in New Issue
Block a user