Socket
Socket
Sign inDemoInstall

gulp-zetzer

Package Overview
Dependencies
267
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    gulp-zetzer

Gulp plugin for Zetzer - a static HTML page generator


Version published
Weekly downloads
2
increased by100%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

gulp-zetzer

Gulp plugin for [zetzer] - static HTML page generator

Install

$ npm install --save-dev gulp-zetzer

Usage

var gulp = require('gulp');
var zetzer = require('gulp-zetzer');

gulp.task('zetzer', function(){
   gulp.src('./src/*.html')
       .pipe(zetzer())
       .pipe(gulp.dest('./build'));
});

More advanced options

gulp.task('zetzer', function(){
   gulp.src('./src/*.html')
       .pipe(zetzer({
		   partials: './src/partials',
		   templates: './src/layouts',
		   dot_template_settings: {
			   strip: false
		   },
		   env: {
			   env_string: 'Some plain string to use with it.document.env_string'
		   }
       }))
       .pipe(gulp.dest('./build'));
});

All possible options are listed in the main [zetzer] project. New features should be implemented in [zetzer]. This is just a Gulp "front-end". [zetzer]: https://github.com/brainshave/zetzer

License

  • Author: Jan Rembold
  • License: MIT

Keywords

FAQs

Last updated on 11 Oct 2015

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc