Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gulp-zetzer

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-zetzer

Gulp plugin for Zetzer - a static HTML page generator

  • 1.0.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
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

Package last updated on 11 Oct 2015

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc