我有一个相当典型的 PHP 项目,其中页面的页眉/页脚部分被重用,因此放在单独的文件中,我只是require
从主文件。
但是,这意味着我的_header.php
-file 以打开<article>
标记结尾(然后在 开头“关闭” _footer.php
)。
问题是我将其解释为htmlmin
错误并在. 我该如何“禁用”它?我已经阅读了grunt-contrib-htmlmin和html-minifier的 GitHub 页面,但运气不佳。article
body
html
_header.php
我的任务配置
htmlmin: {
dist: {
options: {
minifyJS: true,
removeComments: true,
collapseWhitespace: true
},
files: {
'staging/index.php': 'index.php',
'staging/support/index.php': 'support/index.php',
'staging/inc/_header.php': 'inc/_header.php',
'staging/inc/_footer.php': 'inc/_footer.php'
}
}
}
如果您还可以告诉我为什么minifyJS: true
似乎被忽略了,则可以加分
谢谢。