webpack-md-html-loader
v0.0.1
Published
webpack loader for .md to html
Downloads
4
Readme
Webpack loader for markdown file to html string
$ npm install webpack-md-html-loader -D
vue.config.js
module.exports = {
chainWebpack: config => {
config.module
.rule('md-html')
.test(/\.md$/)
.use('md-html')
.loader('webpack-md-html-loader')
.end()
}
}