You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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>
The text was updated successfully, but these errors were encountered:
Have you implemented this yourself? I am struggling with it as it fails to give me satisfying results when deleted elements spans over multiple HTML elements.
Anyway to print the result with
<ins>
and<del>
tag?The text was updated successfully, but these errors were encountered: