ezmarkdown-loader

1.0.0 • Public • Published

Markdown Loader

A markdown loader for webpack using markdown-it.

Installation

npm install --save-dev ezmarkdown-loader

Usage

const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');

module.exports = {
    entry: {
        index: './src/js/index.js',
    },

    module: {
        rules: [
            {
                test: /\.md$/,
                use: [
                    {
                        loader: 'html-loader',
                    },
                    {
                        loader: 'ezmarkdown-loader',
                        options: {
                            html: true,
                        },
                    },
                ],
            },
        ],
    },

    plugins: [
        new HtmlWebpackPlugin({
            filename: 'index.html',
            template: './src/views/index.html',
        }),
    ],
};

Package Sidebar

Install

npm i ezmarkdown-loader

Weekly Downloads

1

Version

1.0.0

License

ISC

Unpacked Size

2.19 kB

Total Files

3

Last publish

Collaborators

  • rustinliu