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
d = HTMLDiffer('<h1>whatever</h1>', '<div>whatever</div>')
d.diff()'s combined_diff should potentially look like '<div class="htmldiffer-tag-change">whatever</div>'
and attribute-level changes could look like: d = HTMLDiffer('<div class="something">whatever</h1>', '<div class="something_else">whatever</div>')
d.diff()'s combined_diff should potentially look like '<div class="htmldiffer-attribute-change">whatever</div>'
or '<div class="htmldiffer-class-change">whatever</div>'
On top of current wip enhancement, would deal with #27, #28, #29
The text was updated successfully, but these errors were encountered:
d = HTMLDiffer('<h1>whatever</h1>', '<div>whatever</div>')
d.diff()'s combined_diff should potentially look like
'<div class="htmldiffer-tag-change">whatever</div>'
and attribute-level changes could look like:
d = HTMLDiffer('<div class="something">whatever</h1>', '<div class="something_else">whatever</div>')
d.diff()'s combined_diff should potentially look like
'<div class="htmldiffer-attribute-change">whatever</div>'
or
'<div class="htmldiffer-class-change">whatever</div>'
On top of current wip enhancement, would deal with #27, #28, #29
The text was updated successfully, but these errors were encountered: