gulp-puml
v0.1.24
Published
Renders PlantUML to SVG
Downloads
16
Readme
gulp-puml
PlantUML rendering Gulp plugin.
Install
$ npm i -D gulp-puml
Usage
var gulp = require('gulp');
var puml = require('gulp-puml');
gulp.task('default', function () {
return gulp.src('doc/puml/**/*.puml')
.pipe(puml())
.pipe(gulp.dest('doc/img/'));
});
API
puml(options)
options
format
Type: string
Default: svg
Format of output files.
Currently only svg
format supported.
License
MIT © bondden 2015