front-matter-markdown
Version:
get the config and toc object from the markdown string.
26 lines (15 loc) • 584 B
JavaScript
(function() {
var AstInlineLexer, InlineLexer, inherits, newOutputFn;
inherits = require('inherits-ex/lib/inherits');
InlineLexer = require('kramed/lib/lex/inline');
newOutputFn = require('./ast-inline-lexer-output-new');
module.exports = AstInlineLexer = (function() {
inherits(AstInlineLexer, InlineLexer);
function AstInlineLexer() {
AstInlineLexer.__super__.constructor.apply(this, arguments);
}
AstInlineLexer.prototype.output = newOutputFn;
return AstInlineLexer;
})();
}).call(this);
//# sourceMappingURL=ast-inline-lexer.js.map