# gulp-pandoc-convert

> run Pandoc with gulp

Latest version **0.1.1** (published 2017-10-22) · MIT license · 0 weekly downloads

## Install

```sh
npm install gulp-pandoc-convert
pnpm add gulp-pandoc-convert
yarn add gulp-pandoc-convert
bun add gulp-pandoc-convert
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.1 |
| Published | 2017-10-22 |
| First published | 2017-10-20 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Yu Ogawa |
| Maintainers | 0gawa |
| Keywords | gulp, pandoc, markdown |

## Links

- npm: https://www.npmjs.com/package/gulp-pandoc-convert
- npm.io page: https://npm.io/package/gulp-pandoc-convert

## Dependencies (2)

- [jsdom](https://npm.io/package/jsdom.md) ^11.3.0
- [vinyl](https://npm.io/package/vinyl.md) ^2.1.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

- 0.1.1 (latest) — 2017-10-22
- 0.1.0 — 2017-10-20

## README

# gulp-pandoc-convert

[![CircleCI](https://circleci.com/gh/0gawa/gulp-pandoc-convert/tree/master.svg?style=svg)](https://circleci.com/gh/0gawa/gulp-pandoc-convert/tree/master)
[![npm version](https://badge.fury.io/js/gulp-pandoc-convert.svg)](https://badge.fury.io/js/gulp-pandoc-convert)

converts documents using pandoc. pandoc (and optionally pandoc-citeproc) needs to be installed on your system.

## Usage

### Install

```
$ npm install --save-dev gulp-pandoc-convert
```

### Example

```js
const pandoc = require("gulp-pandoc-convert").default;
const gulp = require("gulp");

gulp.task("convert", () => {
  gulp.src("src/**/*.md", { base: "src" })
      .pipe(pandoc({
        from: "markdown",
        to: "html5",
        standalone: true,
        filters: [
          "pandoc-citeproc",
          "filter/katex.js"
        ],
        math: true,
        meta: "src/meta.yml"
      })
      .pipe(gulp.dest("docs"));
});
```

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