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.2 KiB
56 lines
1.2 KiB
// Main perser class
|
|
|
|
'use strict';
|
|
|
|
|
|
var assign = require('object-assign');
|
|
|
|
|
|
var Renderer = require('./renderer');
|
|
var ParserBlock = require('./parser_block');
|
|
var ParserInline = require('./parser_inline');
|
|
var defaults = require('./defaults');
|
|
|
|
// Main class
|
|
//
|
|
function Remarkable(options) {
|
|
this.options = assign({}, defaults);
|
|
this.state = null;
|
|
|
|
this.inline = new ParserInline();
|
|
this.block = new ParserBlock();
|
|
this.renderer = new Renderer();
|
|
|
|
// a bunch of cross-references between parsers
|
|
// used for link reference definitions
|
|
this.block.inline = this.inline;
|
|
|
|
if (options) { this.set(options); }
|
|
}
|
|
|
|
|
|
Remarkable.prototype.set = function (options) {
|
|
assign(this.options, options);
|
|
};
|
|
|
|
|
|
Remarkable.prototype.render = function (src) {
|
|
var tokens, tok, i, l, env = { references: Object.create(null) };
|
|
|
|
// Parse blocks
|
|
tokens = this.block.parse(src, this.options, env);
|
|
|
|
// Parse inlines
|
|
for (i = 0, l = tokens.length; i < l; i++) {
|
|
tok = tokens[i];
|
|
if (tok.type === 'inline') {
|
|
tok.children = this.inline.parse(tok.content, this.options, env);
|
|
}
|
|
}
|
|
|
|
// Render
|
|
return this.renderer.render(tokens, this.options, env);
|
|
};
|
|
|
|
|
|
module.exports = Remarkable;
|
|
|