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:
Matt Bierner
2016-09-21 11:54:45 -07:00
committed by Kai Maetzel
parent 265c025bbf
commit 93d16ef30a

View File

@@ -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>