mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-24 12:19:20 +00:00
Use more restrictive regular expression for markdown jsdoc content
Fixes #64455
This commit is contained in:
@@ -7,8 +7,8 @@
|
||||
],
|
||||
"repository": {
|
||||
"markdown-comment": {
|
||||
"begin": "^\\s*\\*(?!/)",
|
||||
"while": "(^|\\G)\\s*\\*(?!/)",
|
||||
"begin": "(?<=/\\*\\*)\\s*\n",
|
||||
"while": "(^|\\G)\\s*\\*(?!/)(?=([^*]|[*](?!/))*$)",
|
||||
"patterns": [
|
||||
{
|
||||
"include": "text.html.markdown#fenced_code_block"
|
||||
|
||||
Reference in New Issue
Block a user