All Projects → sindresorhus → Gulp Markdown

sindresorhus / Gulp Markdown

Licence: mit
Markdown to HTML

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Gulp Markdown

Gulp Markdown Pdf
Markdown to PDF
Stars: ✭ 56 (-66.47%)
Mutual labels:  gulp-plugin, markdown
Hastyscribe
Self-contained markdown compiler generating self-contained HTML documents
Stars: ✭ 166 (-0.6%)
Mutual labels:  markdown
Pervane
Plain text file based note taking and knowledge base building tool, markdown editor, simple browser IDE.
Stars: ✭ 159 (-4.79%)
Mutual labels:  markdown
Markdown Table
Markdown tables, with alignment
Stars: ✭ 164 (-1.8%)
Mutual labels:  markdown
Java Markdown Generator
Java library to generate markdown
Stars: ✭ 159 (-4.79%)
Mutual labels:  markdown
Roro
The Ruby on Rails Oceania (RORO) Sydney meetup
Stars: ✭ 165 (-1.2%)
Mutual labels:  markdown
Cdmarkdownkit
An extensive Swift framework providing simple and customizable markdown parsing.
Stars: ✭ 158 (-5.39%)
Mutual labels:  markdown
Preact Markup
⚡️ Render HTML5 as VDOM, with Components as Custom Elements!
Stars: ✭ 167 (+0%)
Mutual labels:  markdown
Python Markdown Editor
Standalone editor for your markdown files
Stars: ✭ 164 (-1.8%)
Mutual labels:  markdown
Vue Styleguidist
Created from react styleguidist for Vue Components with a living style guide
Stars: ✭ 2,133 (+1177.25%)
Mutual labels:  markdown
Textlint
The pluggable natural language linter for text and markdown.
Stars: ✭ 2,158 (+1192.22%)
Mutual labels:  markdown
Ink
A fast and flexible Markdown parser written in Swift.
Stars: ✭ 2,049 (+1126.95%)
Mutual labels:  markdown
Metal
基于beego开发的网站,管理后台系统,包含功能:登录,用户管理,权限管理,多线程获取数据,定时任务,爬虫,markdown,七牛上传图片。
Stars: ✭ 165 (-1.2%)
Mutual labels:  markdown
Uxdm
🔀 UXDM helps developers migrate data from one system or format to another.
Stars: ✭ 159 (-4.79%)
Mutual labels:  markdown
C4 Builder
This is a documentation builder. You feed it .md and .puml and it exports a site, pdf, or a markdown with navigation.
Stars: ✭ 164 (-1.8%)
Mutual labels:  markdown
Gulp Tap
Easily tap into a gulp pipeline without creating a plugin.
Stars: ✭ 158 (-5.39%)
Mutual labels:  gulp-plugin
Markdown Toolbar Element
Markdown formatting buttons for text inputs.
Stars: ✭ 160 (-4.19%)
Mutual labels:  markdown
Awesome Scientific Writing
⌨️ A curated list of awesome tools, demos and resources to go beyond LaTeX
Stars: ✭ 162 (-2.99%)
Mutual labels:  markdown
Remark Toc
plugin to generate a Table of Contents (TOC)
Stars: ✭ 165 (-1.2%)
Mutual labels:  markdown
Blog
Code for my personal blog built with Gatsby
Stars: ✭ 167 (+0%)
Mutual labels:  markdown

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

const gulp = require('gulp');
const markdown = require('gulp-markdown');

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

API

markdown(options?)

See the marked options.

markdown.marked

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].