mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-08-30 01:18:01 +00:00
Fix problem with the regexp for the "dash" parser
This commit is contained in:
@@ -24,7 +24,7 @@ exports.types = {inline: true};
|
||||
exports.init = function(parser) {
|
||||
this.parser = parser;
|
||||
// Regexp to match
|
||||
this.matchRegExp = /-{2,3}[^-]/mg;
|
||||
this.matchRegExp = /-{2,3}(?!-)/mg;
|
||||
};
|
||||
|
||||
exports.parse = function() {
|
||||
|
Reference in New Issue
Block a user