Eleventy Short Name | File Extension | NPM Package |
---|---|---|
md |
.md |
markdown-it |
Markdown files can be optionally pre-processed with an additional template engine. This can be configured on a per-template basis or globally. Read more at Changing a Template’s Rendering Engine.
html: true
(default isfalse
)
The above options are different than the default markdown-it
options. See all markdown-it
options.
New in Eleventy v0.3.0
: Pass in your own instance of the Markdown library using the Configuration API. See all markdown-it
options.
module.exports = function(eleventyConfig) {
let markdownIt = require("markdown-it");
let options = {
html: true,
breaks: true,
linkify: true
};
eleventyConfig.setLibrary("md", markdownIt(options));
};
New in Eleventy v0.3.0
: Pass in your own markdown-it
plugins using the setLibrary
Configuration API method (building on the method described in “Using your own options”).
- Find your own
markdown-it
plugin on NPM npm install
the plugin.
module.exports = function(eleventyConfig) {
let markdownIt = require("markdown-it");
let markdownItEmoji = require("markdown-it-emoji");
let options = {};
eleventyConfig.setLibrary("md", markdownIt(options).use(markdownItEmoji));
};