Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/xiaofuzi/rollup-plugin-md

a markdown rollup plugin.
https://github.com/xiaofuzi/rollup-plugin-md

Last synced: about 2 months ago
JSON representation

a markdown rollup plugin.

Awesome Lists containing this project

README

        

# rollup-plugin-md
## Install

```node
npm install rollup-plugin-md --save
```

## usage

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

```js
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
}
})
]
});
```