markdown-loader
markdown-loader for webpack
Last updated 6 years ago by jhnns .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ 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();

module.exports = {
    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

  • 8.0.0                                ...           latest (4 years ago)

19 Versions

  • 8.0.0                                ...           4 years ago
  • 7.0.0                                ...           4 years ago
  • 6.0.0                                ...           6 years ago
  • 5.2.0 [deprecated]           ...           6 years ago
  • 5.1.0                                ...           7 years ago
  • 5.0.0                                ...           7 years ago
  • 4.0.0                                ...           8 years ago
  • 3.0.0                                ...           8 years ago
  • 2.0.2                                ...           8 years ago
  • 2.0.1                                ...           9 years ago
  • 2.0.0                                ...           9 years ago
  • 0.1.7                                ...           11 years ago
  • 0.1.6                                ...           11 years ago
  • 0.1.5                                ...           11 years ago
  • 0.1.4                                ...           11 years ago
  • 0.1.3                                ...           11 years ago
  • 0.1.2                                ...           12 years ago
  • 0.1.1                                ...           12 years ago
  • 0.1.0                                ...           12 years ago
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 2
Dependencies (2)
Dev Dependencies (4)

Copyright 2013 - present © cnpmjs.org | Home |