grunt htmlmin里面有一个div的奇怪行为

时间:2013-12-03 10:14:03

标签: html html5 gruntjs

我有一个类似的模板:

<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不能很好地解析它?

1 个答案:

答案 0 :(得分:0)

找到答案,我使用的是v0.1.1,并在此处修复了错误https://github.com/gruntjs/grunt-contrib-htmlmin/pull/25