mirror of
https://github.com/ferrous-systems/embedded-trainings-2020.git
synced 2025-01-27 08:18:07 +00:00
7 lines
186 B
JavaScript
7 lines
186 B
JavaScript
|
const { MarkdownItKrokiCore } = require('./lib/plugin-core');
|
||
|
|
||
|
module.exports = (md, opt) => {
|
||
|
const plugin = new MarkdownItKrokiCore(md);
|
||
|
plugin.setOptions(opt).use();
|
||
|
};
|