Fix problem with the regexp for the "dash" parser

print-window-tiddler
Jeremy Ruston 2012-12-26 19:32:06 +00:00
rodzic 11d001ad80
commit 4cf1c9ed1e
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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() {