|
|
@ -238,18 +238,6 @@ Renderer.prototype.renderInline = function (tokens, options, env) { |
|
|
|
return this.renderToken(tokens, i, options); |
|
|
|
} |
|
|
|
}, this); |
|
|
|
|
|
|
|
for (var i = 0, len = tokens.length; i < len; i++) { |
|
|
|
type = tokens[i].type; |
|
|
|
|
|
|
|
if (typeof rules[type] !== 'undefined') { |
|
|
|
result += rules[type](tokens, i, options, env, this); |
|
|
|
} else { |
|
|
|
result += this.renderToken(tokens, i, options); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
return result; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|