0.1.4 • Published 9 years ago

grunt-include-handlebar v0.1.4

Weekly downloads
1
License
ISC
Repository
github
Last release
9 years ago

grunt-include-handlebar

The best Grunt plugin ever.

Getting Started

This plugin requires Grunt ~0.4.5

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-include-handlebar --save-dev

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

grunt.loadNpmTasks('grunt-include-handlebar');

The "'include-handlebar'" task

Overview

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

grunt.initConfig({
  'include-handlebar': {
    options: {
        banner: '/*! <%= pkg.file %> <%= grunt.template.today("yyyy-mm-dd") %> */\n'
      },
    build: {
      expand: true,
      cwd: 'src/',
      src: ['**/*.html'],
      dest: 'dest/'
    }
  },
});

Example

a.html

<include data="{'name':'Nicklaus','work':'vampire'}" href="in.html" id="test" />

in.html

<script id="test">
<p>
	<span>His name is {{name}}.</span>
	<span>{{name}} is a {{work}}.</span>
</p>
</script>
<script id="t">
<p>
	<span>Who is {{name}}?</span>
	<span>I do not kmow.</span>
</p>
</script>

a.html out

<p>
	<span>His name is Nicklaus.</span>
	<span>Nicklaus is a vampire.</span>
</p>

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.

Release History

(Nothing yet)

0.1.4

9 years ago

0.1.3

9 years ago

0.1.2

9 years ago

0.1.1

9 years ago

0.1.0

9 years ago