-
gulp-html-replace是一个工具,它能准确替换HTML中的构建块,其功能类似于useref,但处理方式更为恰当
资源介绍
gulp-html-replace
替换HTML中的构建块。 像useref一样,但是做对了。
目录
用法
安装:
npm install --save-dev gulp-html-replace
在您HTML文件中放置一些块:
<!-- build: -->
Everything here will be replaced
<!-- endbuild -->
name是块的名称。 可以包含字母,数字,下划线( _ )和连字符( - )符号。
API
htmlreplace(任务,选项)
任务
类型: Object {task-name: replacement}
task-name -HTML中块的名称。
替换String|Array|stream.Readable|Object替换。 请参阅下面的示例。
简单的例子:
// Options is a single string
htmlreplace ( { js : 'js/main.js' } )
// Options is an array of strings
htmlreplace ( { js