Extras, utils, language definitions and defaults for marked.js
If you find a bug or have a feature request, please create an issue.
Installation
Use npm to install the package
npm i marked-extras --save
Usage
var marked = require('marked');
var extras = require('marked-extras');
module.exports = function (content, options) {
options = options || {};
extras.init(options);
marked.setOptions(extras.markedDefaults);
return marked(content);
};
Contributing
In lieu of a formal styleguide, take care to maintain the existing coding style.
Authors
Jon Schlinkert
Brian Woodward
License
Copyright (c) 2014 Jon Schlinkert, Brian Woodward, contributors.
Released under the MIT license