[Markdown highlighting] Parse basic rules in blockquotes

This commit is contained in:
Benoit Schweblin 2013-11-19 19:48:13 +00:00
commit c2fb30b313

View file

@ -83,7 +83,7 @@ var MarkdownHighlightRules = function() {
next : "githubblock"
}, { // block quote
token : "string.blockquote",
regex : "^>[ ].+$",
regex : "^\\s*>[ ]",
next : "blockquote"
}, { // HR * - _
token : "constant",
@ -173,8 +173,9 @@ var MarkdownHighlightRules = function() {
regex : "^\\s*$",
next : "start"
}, {
token : "string",
regex : ".+"
include : "basic", noEscape: true
}, {
defaultToken : "blockquote"
} ],
"githubblock" : [ {