bem / html-differ

Сompares two HTML
http://bem.info/tools/testing/html-differ/
MIT License
212 stars 45 forks source link

Ignore leading and trailing white space inside certain or all attributes? #153

Open lonewarrior556 opened 6 years ago

lonewarrior556 commented 6 years ago

I am having issues since these elements are not considered equivalent?

<div style=" "></div> <div style=""></div>

<div style="color:red "></div> <div style="color:red"></div>

<div style=" color:red"></div> <div style="color:red"></div>

<div style=" color:red "></div> <div style="color:red"></div>

mordrax commented 6 years ago

I'd like to add that

<div style=""></div>

and

<div></div>

should also be equivalent.