1.0.1 • Published 6 years ago

gulp-yhtml v1.0.1

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

gulp-content-includer

a plugin for gulp.js to include files

Installation

npm install gulp-utf8-convert

Options

includerReg: RegExp of the include expression

Type: RegExp

baseSrc: basedir of the source

Type: String

deepConcat concat content recursive

Type: Boolean default : false

Usage

var gulp = require('gulp');
var contentInclude = require('gulp-content-includer');

gulp.task('concat',function() {
    gulp.src("./content.html")
        .pipe(contentInclude({
            includerReg:/<!\-\-include\s+"([^"]+)"\-\->/g
        }))
        .pipe(gulp.dest('./'));
});