mirror of
https://github.com/tcsenpai/obsidiangarden_netlify.git
synced 2025-06-07 05:05:20 +00:00

* allow users to add plugins to setup markdown and eleventy * comments on function * added userSetup.js to plugin-info.json
11 lines
505 B
JavaScript
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;
|