gulp-markdown

Markdown to HTML

MIT 17 个版本
安装
npm install gulp-markdown
yarn add gulp-markdown
pnpm add gulp-markdown
bun add gulp-markdown
README

gulp-markdown

Markdown to HTML with marked

Issues with the output should be reported on the marked issue tracker.

Install

npm install --save-dev gulp-markdown

Usage

import gulp from 'gulp';
import markdown from 'gulp-markdown';

export default () => (
	gulp.src('intro.md')
		.pipe(markdown())
		.pipe(gulp.dest('dist'))
);

API

markdown(options?) (default export)

See the marked options.

marked (named export)

Access the marked object to customize the lexer, parser or renderer.

版本列表
8.0.0 2023-11-03
7.0.0 2022-06-10
6.0.0 2021-03-01
5.1.0 2020-07-12
5.0.1 2019-10-04
5.0.0 2019-08-18
4.0.0 2019-04-11
3.0.0 2018-08-08
2.0.1 2017-12-31
2.0.0 2017-12-31
1.2.0 2015-11-14
1.1.0 2015-10-04
1.0.0 2014-08-14
0.2.0 2014-07-26
0.1.2 2014-01-19
0.1.1 2014-01-05
0.1.0 2013-12-31