markdown-code-highlight-loader

1.0.1 • Public • Published

markdown-code-highlight-loader

This is a webpack loader, use marked to translate *.md to html, so that you can use in webpage.

And use highlight.js to highlight your code when you write in your *.md

how to use

  • npm install markdown-code-highlight-loader --save in your project

  • in your webpack.config.js, write like This

    module: {
      loaders: [{
        test: /\.md$/,
        loader: "html!markdown-code-highlight"
      }]
    }
    
  • or in your js, import like this

  var html = require('html!markdown-code-highlight!./readme.md')
  • import css in your webpage
require('./index.css');

highlight style

If you don't like the style in index.css, you can also use other highlight style.

Readme

Keywords

none

Package Sidebar

Install

npm i markdown-code-highlight-loader

Weekly Downloads

1

Version

1.0.1

License

ISC

Last publish

Collaborators

  • qiuyuntao