@tiddlygit/tiddlywiki
Version:
a non-linear personal web notebook
41 lines (31 loc) • 708 B
JavaScript
/*\
title: $:/core/modules/parsers/wikiparser/rules/dash.js
type: application/javascript
module-type: wikirule
Wiki text inline rule for dashes. For example:
```
This is an en-dash: --
This is an em-dash: ---
```
\*/
(function(){
/*jslint node: true, browser: true */
/*global $tw: false */
;
exports.name = "dash";
exports.types = {inline: true};
exports.init = function(parser) {
this.parser = parser;
// Regexp to match
this.matchRegExp = /-{2,3}(?!-)/mg;
};
exports.parse = function() {
// Move past the match
this.parser.pos = this.matchRegExp.lastIndex;
var dash = this.match[0].length === 2 ? "–" : "—";
return [{
type: "entity",
entity: dash
}];
};
})();