# markdown-to-html-loader

> A webpack loader based on showdown to transform markdown file to html file

Latest version **1.0.1** (published 2020-05-02) · ISC license · 0 weekly downloads

## Install

```sh
npm install markdown-to-html-loader
pnpm add markdown-to-html-loader
yarn add markdown-to-html-loader
bun add markdown-to-html-loader
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2020-05-02 |
| First published | 2020-05-02 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 1.3 KB |
| Known vulnerabilities | 0 (+3 in 1 direct dependencies) |
| Install scripts | no |
| Author | Lainey |
| Maintainers | lainey052 |
| Keywords | Markdown, HTML, webpack |

## Links

- npm: https://www.npmjs.com/package/markdown-to-html-loader
- npm.io page: https://npm.io/package/markdown-to-html-loader

## Dependencies (1)

- [showdown](https://npm.io/package/showdown.md) ^1.9.1

## Alternatives

- [@tsparticles/shape-image](https://npm.io/package/@tsparticles/shape-image.md) — 303.7K weekly downloads
- [@tsparticles/shape-line](https://npm.io/package/@tsparticles/shape-line.md) — 233.7K weekly downloads
- [stringify-attributes](https://npm.io/package/stringify-attributes.md) — 58.6K weekly downloads
- [mobile-drag-drop](https://npm.io/package/mobile-drag-drop.md) — 46.3K weekly downloads
- [@comunica/actor-rdf-parse-html](https://npm.io/package/@comunica/actor-rdf-parse-html.md) — 29.2K weekly downloads

## Recent versions

- 1.0.1 (latest) — 2020-05-02
- 1.0.0 — 2020-05-02

## README

# A webpack loader based on showdown to transform markdown file to html file

## Installation

```bash
npm install
```
**npm**
```
npm install --save markdown-to-html-loader
```

## usage
```
module.exports = {
  mode: 'development',
  entry: './src/index.js',

  resolveLoader: {
    modules: [
    'node_modules',
    path.resolve(__dirname, 'loaders')
    ]
  },

  module:{
    rules:[
      {
        test: /\.md$/,
        use:[
          {loader: 'html-loader'}, 
          {loader: 'conver-loader',
          options: {title: 'hello'}
        }]
      },
    ]
  },
  output: {
    filename: '[name].bundle.js',
    path: path.resolve(__dirname, 'dist'),
  },
};
```

**Updating**

---
_Source: https://npm.io/package/markdown-to-html-loader · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
