gulp-pagebuilder2
v0.2.1
Published
Gulp-plugin for build files with include other files
Downloads
4
Readme
gulp-pagebuilder
Pagebuilder2 is a build and real time include engine for HTML, JavaScript, CSS and in general any type of text file that you wish to might want to "include" other files into. It is modification of gulp-pagebuilder
Install
Install with npm.
npm install --save-dev gulp-pagebuilder2
Examples
var gulp = require('gulp'),
pagebuilder2 = require('gulp-pagebuilder2'));
gulp.task('default', function () {
gulp.src('src/*.html')
.pipe(pagebuilder2('src'))
.pipe(gulp.dest('build/'));
});
How use it in sources
<div class="someclass" >
[[azbntple tpl="some/block/in/src/somefile.html" class="foo bar" ]]
</div>
Content of some/block/in/src/somefile.html
<div class="otherclass {{class}}" >
Some content
</div>
Result after compile
<div class="someclass" >
<div class="otherclass foo bar" >
Some content
</div>
</div>