我已经删除了内容,希望让我的问题更容易阅读
<html>
<head></head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="0" bgcolor="#f2f2f2" align="center">
<!--===================
Content goes in here
====================-->
</table>
<script src="./dist/logic.js"></script>
</body>
</html>
我的大部分内容都是使用javascript生成的。
到目前为止,我已经console.log()
生成的HTML并将其复制到新的HTML文件中。
我一直在学习编译SCSS和JS,我想知道是否有一个gulp插件用输出的HTML标记输出一个新的HTML文件。
我尝试使用谷歌搜索“输出HTML文件gulp”和“使用gulp生成HTML文件”。我没有运气,我确信我的搜索能力很差。
有没有办法生成新的HTML文件,理想情况下使用gulp插件?
非常感谢您的帮助。
感谢
萌
var gulp = require('gulp');
gulp.task('build', function () {
gulp.src(['./index.html'])
.pipe(htmlbuild({
// build js with preprocessor
js: htmlbuild.preprocess.js(function (block) {
// read paths from the [block] stream and build them
// ...
// then write the build result path to it
block.write('buildresult.js');
block.end();
})
}))
.pipe(gulp.dest('./build'));
});