我有一个类似的模板:
<a>
<div></div>
<p>another text</p>
</a>
当然是<!doctype html>
当我启动grunt server
时效果很好(没有htmlmin)但是当我使用任务grunt build
执行htmlmin
时,它会输出一个错误的html:
<a></a>
<div></div>
<p>another text</p>
我用这个重构来修复它:
<a>
<span></span>
<span>another text</span>
</a>
我认为div中的div和p是html5有效,但为什么htmlmin不能很好地解析它?
答案 0 :(得分:0)
找到答案,我使用的是v0.1.1,并在此处修复了错误https://github.com/gruntjs/grunt-contrib-htmlmin/pull/25