diff --git a/benchmark/implementations/current/index.js b/benchmark/implementations/current/index.js index 9410f70..20a1cdf 100644 --- a/benchmark/implementations/current/index.js +++ b/benchmark/implementations/current/index.js @@ -3,7 +3,7 @@ var Remarkable = require('../../../'); var md = new Remarkable({ html: true, - linkify: true, + linkify: false, typographer: true }); diff --git a/lib/typographer.js b/lib/typographer.js index c5525b2..ec1748b 100644 --- a/lib/typographer.js +++ b/lib/typographer.js @@ -45,8 +45,6 @@ Typographer.prototype.set = function (options) { Typographer.prototype.process = function (state) { var i, l, rules; - if (!state.options.typographer) { return; } - rules = this._rules; for (i = 0, l = rules.length; i < l; i++) {