Freemarker renderer plugin for grunt (forked from ijse/grunt-freemarker)
npm install grunt-freemarker-fork> Freemarker renderer plugin for grunt (forked from ijse/grunt-freemarker).

~0.4.2If 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:
``shell`
npm install grunt-freemarker --save-dev
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
`js`
grunt.loadNpmTasks('grunt-freemarker');
to the data object passed into grunt.initConfig().`js
grunt.initConfig({
freemarker: {
options: {
// Task-specific options go here.
},
your_target: {
// Target-specific file lists and/or options go here.
},
},
});
`$3
#### options.views
Type:
String
Default value: viewsThe folder where all views in.
#### options.out
Type:
String
Default value: publicThe folder where export to.
#### options.encoding
Type:
String
Default value: utf-8View's encode.
$3
The view and dest file defined in
mocks/simple.js:
`js
module.exports = {
view: "/simple.ftl",
out: "/simple.html",
data: {
name: "ijse"
}
};
`
and views/simple.ftl:
`text
view sample${name}
`Then, the result would be
public/simple.html:
`
view sampleijse
`#### Default Options
`js
grunt.initConfig({
freemarker: {
options: {},
src: "mocks/*.js"
},
});
``
