1.1.0 • Published 7 years ago

react-for-markdown-loader v1.1.0

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

react-for-markdown-loader

Convert Markdown file to React Component using markdown-it.

Installation

npm i react-for-markdown-loader -D

Feature

  • Hot reload
  • Write React script
  • Code highlight

Usage

webpack.config.js file:

module.exports = {
  module: {
    loaders: [{
      test: /\.md/,
      loader: 'react-for-markdown-loader'
    }]
  }
};

Options

reference markdown-it

{
// markdown-it config
  preset: 'default',
  breaks: true,

  preprocess: function(markdownIt, source) {
  // do any thing
    return source
  },
  use: [
  /* markdown-it plugin */
    require('markdown-it-xxx'),
  /* or */
    [require('markdown-it-xxx'), 'this is options']
  ]
}

Or you can customize markdown-it

var markdown = require('markdown-it')({
  html: true,
  breaks: true
})

markdown
  .use(plugin1)
  .use(plugin2, opts, ...)
  .use(plugin3);

module.exports = {
  module: {
    loaders: [{
      test: /\.md/,
      loader: 'react-for-markdown-loader'
    }]
  }

};

Run Example

git clone https://github.com/skidxjq/react-for-markdown-loader
cd react-for-markdown-loader
npm run example
open http://localhost:8080

Note

Resource references can only use absolute path