mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 02:58:56 +01:00
Fix colorization for markdown indented paragraphs
Issue #8264 **Bug** Indented paragraphs are not highlighted in markdown files. Up to three spaces are allowed before the first non space character. **Fix** Add rule to consume optional spaces before paragrpah start. closes #8264
This commit is contained in:
committed by
Kai Maetzel
parent
265c025bbf
commit
93d16ef30a
@@ -489,7 +489,7 @@
|
||||
<key>paragraph</key>
|
||||
<dict>
|
||||
<key>begin</key>
|
||||
<string>(^|\G)(?=\S)</string>
|
||||
<string>(^|\G)[ ]{0,3}(?=\S)</string>
|
||||
<key>name</key>
|
||||
<string>meta.paragraph.markdown</string>
|
||||
<key>patterns</key>
|
||||
|
||||
Reference in New Issue
Block a user