Skip to content

assemble/assemble-swig

Repository files navigation

assemble-swig NPM version Build Status

Assemble engine plugin for processing swig templates.

Getting Started

npm install assemble-swig --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('assemble-swig');

The "assemble" task

Run this task with the grunt assemble command.

Overview

In your project's Gruntfile, add a section named assemble to the data object passed into grunt.initConfig().

Usage Example

grunt.initConfig({
  assemble: {
    options: {
      engine: 'swig',
      swig: {
        varControls: ["<%=", "%>"]
      }
    },
    site: {
      files: {
        '_gh_pages/': ['src/templates/**/*.swig']
      }
    }
  }
});

Options

Type: String

Specify swig as the current engine for processing templates:

assemble: {
  options: {
    engine: 'swig'
  }
}

Related projects

Release History

  • 2013-08-07   v0.1.0   New Assemble engine plugin for swig templates.

Project authored by Brian Woodward.

This file was generated on Wed Sep 11 2013 22:50:17.

About

Assemble engine plugin for swig templates.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

  •  
  •  

Packages

No packages published