gulp-styledocdown
v0.1.5
Published
A styledocdown plugin for Gulp
Downloads
11
Maintainers
Readme
gulp-styledocdown
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.