Another fix for the block vs inline handline

This commit is contained in:
Jermolene
2014-02-20 22:43:04 +00:00
parent c761bbe2ed
commit c17844b815
3 changed files with 9 additions and 2 deletions

View File

@@ -359,7 +359,7 @@ exports.parseTag = function(source,pos,options) {
pos = token.end;
// Check for a required line break
if(options.requireLineBreak) {
token = this.parseTokenRegExp(source,pos,/(\r?\n)/g);
token = this.parseTokenRegExp(source,pos,/(\r?\n\r?\n)/g);
if(!token) {
return null;
}