All Projects → xiaofuzi → rollup-plugin-md

xiaofuzi / rollup-plugin-md

Licence: other
a markdown rollup plugin.

Programming Languages

javascript
184084 projects - #8 most used programming language

rollup-plugin-md

Install

npm install rollup-plugin-md --save

usage

import md from './test.md';
console.log( `Template for render: ${md}` );
import { rollup } from 'rollup';
import md from 'rollup-plugin-md';

rollup({
    entry: 'main.js',
    plugins: [
        md({
            // to disable marked set to false
            marked: {
                //marked options
            }
        })
    ]
});
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].