mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2026-03-12 09:42:19 -07:00
Fix problem with the regexp for the "dash" parser
This commit is contained in:
parent
11d001ad80
commit
4cf1c9ed1e
1 changed files with 1 additions and 1 deletions
|
|
@ -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() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue