Markdown parser, done right. 100% CommonMark support, extensions, syntax plugins & high speed
https://markdown-it.github.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
763 B
40 lines
763 B
import nodeResolve from '@rollup/plugin-node-resolve'
|
|
import commonjs from '@rollup/plugin-commonjs'
|
|
import terser from '@rollup/plugin-terser'
|
|
|
|
const plugins = [
|
|
nodeResolve({ preferBuiltins: true }),
|
|
commonjs(),
|
|
// Here terser is used only to force ascii output
|
|
terser({
|
|
mangle: false,
|
|
compress: false,
|
|
format: {
|
|
comments: 'all',
|
|
beautify: true,
|
|
ascii_only: true,
|
|
indent_level: 2
|
|
}
|
|
})
|
|
]
|
|
|
|
export default [
|
|
{
|
|
input: 'index.mjs',
|
|
output: {
|
|
file: 'demo/markdown-it.js',
|
|
format: 'umd',
|
|
name: 'markdownit'
|
|
},
|
|
plugins
|
|
},
|
|
{
|
|
input: 'support/demo_template/index.mjs',
|
|
output: {
|
|
file: 'demo/index.js',
|
|
format: 'iife',
|
|
name: 'demo'
|
|
},
|
|
plugins
|
|
}
|
|
]
|
|
|