markdown-loader
markdown-loader for webpack
Last updated 7 years ago by meaku .
MIT · Repository · Bugs · Original npm
$ cnpm install markdown-loader 
SYNC missed versions from official npm registry.

markdown-loader

markdown-loader for webpack using marked.

install size Dependency Status Build Status

Installation

npm install markdown-loader

Changelog

Usage

Since marked's output is HTML, it's best served in conjunction with the html-loader.

Webpack 2+

{
    module: {
        rules: [{
                test: /\.md$/,
                use: [
                    {
                        loader: "html-loader"
                    },
                    {
                        loader: "markdown-loader",
                        options: {
                            /* your options here */
                        }
                    }
                ]
            }]
    }
}

Options

Pass your marked options as shown above. In order to specify custom renderers, set the options.renderer-option in your webpack config.

// webpack.config.js

const marked = require("marked");
const renderer = new marked.Renderer();

return {
    module: {
        rules: [{
                test: /\.md$/,
                use: [
                    {
                        loader: "html-loader"
                    },
                    {
                        loader: "markdown-loader",
                        options: {
                            pedantic: true,
                            renderer
                        }
                    }
                ]
            }]
    }
}

License

MIT (http://www.opensource.org/licenses/mit-license.php)

Sponsors

Current Tags

  • 5.0.0                                ...           latest (7 years ago)

1 Versions

  • 5.0.0                                ...           7 years ago
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (2)
Dev Dependencies (4)
Dependents (0)
None

Copyright 2013 - present © cnpmjs.org