# showdown-loader

> Markdown (showdown-ghost) loader for webpack

Latest version **1.0.1** (published 2018-02-12) · CC-BY-4.0 license · 0 weekly downloads

## Install

```sh
npm install showdown-loader
pnpm add showdown-loader
yarn add showdown-loader
bun add showdown-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 | 2018-02-12 |
| First published | 2016-08-19 |
| Weekly downloads | 0 |
| License | CC-BY-4.0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 12.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Harianto van Insulinde |
| Maintainers | harianto |
| Keywords | showdown-loader, webpack, markdown, showdown-ghost |

## Links

- npm: https://www.npmjs.com/package/showdown-loader
- Repository: https://github.com/HariantoAtWork/showdown-loader
- Homepage: https://github.com/HariantoAtWork/showdown-loader#readme
- Issues: https://github.com/HariantoAtWork/showdown-loader/issues
- npm.io page: https://npm.io/package/showdown-loader

## Dependencies (1)

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

## Alternatives

- [@mdxeditor/editor](https://npm.io/package/@mdxeditor/editor.md) — 962.4K weekly downloads
- [mmdb-lib](https://npm.io/package/mmdb-lib.md) — 680.9K weekly downloads
- [playcanvas](https://npm.io/package/playcanvas.md) — 36.2K weekly downloads
- [@glw907/cairn-cms](https://npm.io/package/@glw907/cairn-cms.md) — 967 weekly downloads
- [markdown-to-confluence](https://npm.io/package/markdown-to-confluence.md) — 103 weekly downloads

## Recent versions

- 1.0.1 (latest) — 2018-02-12
- 1.0.0 — 2016-08-19

## README

# markdown (showdown-ghost) loader for webpack


## Installation

```sh
npm install -S showdown-loader
```


## Usage

In your `webpack.config.js` file:

```js
module.exports = {
  module: {
    loaders: [{
      test:   /\.md/,
      loader: 'showdown'
    }]
  }
};
```

See `webpack` documentation.

## Optional

If you already have `html-loader` included you can do this:

```js
module.exports = {
  module: {
    loaders: [{
      test:   /\.md/,
      loader: 'html!showdown'
    }]
  }
};
```

## License

MIT (http://www.opensource.org/licenses/mit-license.php)

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