1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-11-27 03:57:21 +00:00

Fix regex typos

The trouble with regexs being that they breed typos…

Fix #103
This commit is contained in:
Jeremy Ruston 2013-06-05 19:06:31 +01:00
parent d81f45764a
commit 6ae73e0fc7

View File

@ -52,7 +52,7 @@ exports.types = {block: true};
exports.init = function(parser) {
this.parser = parser;
// Regexp to match
this.matchRegExp = /([\\*#;:]+)/mg;
this.matchRegExp = /([\*#;:]+)/mg;
};
var listTypes = {
@ -71,7 +71,7 @@ exports.parse = function() {
// Cycle through the items in the list
while(true) {
// Match the list marker
var reMatch = /(^[\*#;:]+)/mg;
var reMatch = /([\*#;:]+)/mg;
reMatch.lastIndex = this.parser.pos;
var match = reMatch.exec(this.parser.source);
if(!match || match.index !== this.parser.pos) {