Markdown parser, done right. 100% CommonMark support, extensions, syntax plugins & high speed
https://markdown-it.github.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.0 KiB
56 lines
1.0 KiB
// Class of typographic replacements rules
|
|
//
|
|
'use strict';
|
|
|
|
// TODO:
|
|
// - fractionals 1/2, 1/4, 3/4 -> ½, ¼, ¾
|
|
// - miltiplication 2 x 4 -> 2 × 4
|
|
|
|
|
|
var defaults = require('./defaults/typographer');
|
|
var assign = require('./common/utils').assign;
|
|
var Ruler = require('./ruler');
|
|
|
|
|
|
var rules = [];
|
|
|
|
|
|
rules.push(require('./rules_typographer/replace'));
|
|
rules.push(require('./rules_typographer/smartquotes'));
|
|
|
|
|
|
function Typographer() {
|
|
this._rules = [];
|
|
|
|
this.options = assign({}, defaults);
|
|
|
|
this.ruler = new Ruler(this.rulesUpdate.bind(this));
|
|
|
|
for (var i = 0; i < rules.length; i++) {
|
|
this.ruler.after(rules[i]);
|
|
}
|
|
}
|
|
|
|
|
|
Typographer.prototype.rulesUpdate = function () {
|
|
this._rules = this.ruler.getRules();
|
|
};
|
|
|
|
|
|
Typographer.prototype.set = function (options) {
|
|
assign(this.options, options);
|
|
};
|
|
|
|
|
|
Typographer.prototype.process = function (state) {
|
|
var i, l, rules;
|
|
|
|
rules = this._rules;
|
|
|
|
for (i = 0, l = rules.length; i < l; i++) {
|
|
rules[i](this, state);
|
|
}
|
|
};
|
|
|
|
|
|
module.exports = Typographer;
|
|
|