Skip to content
This repository was archived by the owner on Jun 16, 2018. It is now read-only.

Latest commit

 

History

History
50 lines (31 loc) · 1.33 KB

README.md

File metadata and controls

50 lines (31 loc) · 1.33 KB

Remarkable loader for webpack Version Build Status Dependency Status

Parses source as Markdown using the awesome Remarkable parser.

Installation

$ npm install --save remarkable-loader

Usage

Documentation: Using loaders

In your webpack.config.js file:

module.exports = {
  module: {
    loaders: [{
      test:   /\.md/,
      loader: 'remarkable'
    }]
  },

  remarkable: {
    preset: 'full',
    linkify: true,
    typographer: true
  }
};

Meta

Contributors

License

Copyright (c) 2014 Daniel Perez Alvarez (unindented.org). This is free software, and may be redistributed under the terms specified in the LICENSE file.