1.0.0 • Published 5 years ago

md-html-webpack-plugin v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
5 years ago

md-html-webpack-plugin

Use

const MarkdownToHtmlPlugin = require('md-html-webpack-plugin')

module.exports = {
  entry: 'index.js',

  output: {
    path: __dirname + '/dist',
    filename: 'index_bundle.js'
  },

  plugins: [
    new MarkdownToHtmlPlugin({
      input: 'CHANGELOG.md',
      output: 'static/CHANGELOG.html'
    })
  ]
}