0.1.5 • Published 8 years ago

gulp-styledocdown v0.1.5

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

gulp-styledocdown

NPM version Build Status

styledocdown plugin for gulp

Usage

First, install gulp-styledocdown as a development dependency:

npm install --save-dev gulp-styledocdown

Then, add it to your gulpfile.js:

var styledocdown = require("gulp-styledocdown");

gulp.src("./src/*.ext")
	.pipe(styledocdown({
		root: "root/folder/for/relatively/linked/files/"
	}))
	.pipe(gulp.dest("./dist"));

API

styledocdown(options)

options.root

Type: String
Default: File directory

Set the location where the linked files are hosted.

License

MIT License