Utsob Roy 59c3cde9e0
feat: User setup (#95)
* allow users to add plugins to setup markdown and eleventy

* comments on function

* added userSetup.js to plugin-info.json
2023-03-06 08:37:17 +01:00

11 lines
505 B
JavaScript

function userMarkdownSetup(md) {
// The md parameter stands for the markdown-it instance used throughout the site generator.
// Feel free to add any plugin you want here instead of /.eleventy.js
}
function userEleventySetup(eleventyConfig) {
// The eleventyConfig parameter stands for the the config instantiated in /.eleventy.js.
// Feel free to add any plugin you want here instead of /.eleventy.js
}
exports.userMarkdownSetup = userMarkdownSetup;
exports.userEleventySetup = userEleventySetup;