https://github.com/gulp-plugin/pandoc
A Gulp transform plugin for Pandoc
https://github.com/gulp-plugin/pandoc
gulp gulp-plugin javascript pandoc typescript
Last synced: 2 months ago
JSON representation
A Gulp transform plugin for Pandoc
- Host: GitHub
- URL: https://github.com/gulp-plugin/pandoc
- Owner: gulp-plugin
- License: other
- Created: 2021-07-14T20:14:52.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2023-02-20T12:12:30.000Z (over 3 years ago)
- Last Synced: 2025-10-04T19:32:50.782Z (9 months ago)
- Topics: gulp, gulp-plugin, javascript, pandoc, typescript
- Language: TypeScript
- Homepage:
- Size: 532 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# @gulp-plugin/pandoc  [](https://github.com/gulp-plugin/pandoc/packages/)
[](https://github.com/gulp-plugin/pandoc/actions/workflows/node.js.yml) [](https://coveralls.io/github/gulp-plugin/pandoc?branch=master) [](https://david-dm.org/gulp-plugin/pandoc)
A JavaScript/TypeScript Pandoc plugin for [Gulp](https://github.com/gulpjs/gulp)
## Installation
```shell
npm install --save-dev @gulp-plugin/pandoc
```
## Usage
Then, add it to your `gulpfile.js`:
```typescript
const collect = require('@gulp-plugin/pandoc');
gulp.src('docs/**/*.md')
.pipe(pandoc({ from: 'markdown', to: 'html', ext: '.html' }))
.pipe(gulp.dest('docs/'));
```
## License
This project is licensed under the MIT License - see the [LICENSE.md](LICENSE) file for details