Anyway to print the result with <ins> and <del> tag?
var first = "<p>This is a paragraph</p>"
var second= "<p>This is a changed paragraph</p>"
var diff = htmlDiffer.diffHtml(first , second);
// Should result in
<p>This is a <ins>changed</ins> paragraph</p>