kopia lustrzana https://github.com/miklobit/TiddlyWiki5
Allow the end of text to be treated as a linebreak for parsing HTML tags
rodzic
0961b0426b
commit
75ff9fb6c0
|
@ -48,7 +48,7 @@ exports.parse = function() {
|
||||||
// Advance the parser position to past the tag
|
// Advance the parser position to past the tag
|
||||||
this.parser.pos = tag.end;
|
this.parser.pos = tag.end;
|
||||||
// Check for an immediately following double linebreak
|
// Check for an immediately following double linebreak
|
||||||
var hasLineBreak = !tag.isSelfClosing && !!this.parseTokenRegExp(this.parser.source,this.parser.pos,/(\r?\n\r?\n)/g);
|
var hasLineBreak = !tag.isSelfClosing && !!this.parseTokenRegExp(this.parser.source,this.parser.pos,/(\r?\n(?:\r?\n|$))/g);
|
||||||
// Set whether we're in block mode
|
// Set whether we're in block mode
|
||||||
tag.isBlock = this.is.block || hasLineBreak;
|
tag.isBlock = this.is.block || hasLineBreak;
|
||||||
// Parse the body if we need to
|
// Parse the body if we need to
|
||||||
|
@ -359,7 +359,7 @@ exports.parseTag = function(source,pos,options) {
|
||||||
pos = token.end;
|
pos = token.end;
|
||||||
// Check for a required line break
|
// Check for a required line break
|
||||||
if(options.requireLineBreak) {
|
if(options.requireLineBreak) {
|
||||||
token = this.parseTokenRegExp(source,pos,/(\r?\n\r?\n)/g);
|
token = this.parseTokenRegExp(source,pos,/(\r?\n(?:\r?\n|$))/g);
|
||||||
if(!token) {
|
if(!token) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
Ładowanie…
Reference in New Issue