See line 90 on node-cover/templates/index.html https://github.com/itay/node-cover/blob/master/templates/index.html#L90 ``` <td><a href='<%= fileUrls[cell] %>'><%= cell %></a<</td> ^ error char ``` Proposed solution: ``` <td><a href='<%= fileUrls[cell] %>'><%= cell %></a></td> ```