npm install grunt-ax-marko 
> marko template render
~0.4.5If 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-ax-marko --save-dev
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
`js`
grunt.loadNpmTasks('grunt-ax-marko');
to the data object passed into grunt.initConfig().`js
grunt.initConfig({
ax_marko: {
default: {
options: {
preserveWhitespace: true // expected output whitespace
},
files: [
{
// src_root: "", [Enter when you try and try my watch until the folder under the src_root to dest subfolder]
src: "test/fixtures/*.html",
global_data: { // append data
layout_path: "../layouts/basic.marko" // src relative path
},
lang: {
ko: "test/lang/ko.json",
en: "test/lang/en.json"
},
// lang: "test/lang/ko.json", [Enter when do not use lang folder]
dest: "test/expected",
output_extension: "html"
}
]
}
},
});
``