1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-27 14:48:19 +00:00

Removed extraneous calls to skipWhitespace

Instead we'll skip whitespace at the start of a run
This commit is contained in:
Jeremy Ruston 2012-06-05 23:15:52 +01:00
parent 0944e5476d
commit a318ad77cd
2 changed files with 0 additions and 3 deletions

View File

@ -32,7 +32,6 @@ exports.regExpString = "!{1,6}";
exports.parse = function(match,isBlock) {
this.pos = match.index + match[0].length;
this.skipWhitespace();
var classedRun = this.parseClassedRun(/(\r?\n)/mg);
return [$tw.Tree.Element("h1",{"class": classedRun["class"]},classedRun.tree)];
};

View File

@ -85,8 +85,6 @@ exports.parse = function(match,isBlock) {
}
// Skip the list markers
this.pos = match.index + match[0].length;
// Skip any whitespace
this.skipWhitespace();
// Process the body of the list item into the last list item
var lastListInfo = listTypes[match[0].charAt(match[0].length-1)],
lastListChildren = listStack[listStack.length-1].children,