iabudiab / HTMLKit

An Objective-C framework for your everyday HTML needs.
MIT License
239 stars 27 forks source link

HTMLKit erroneous HTMLElement attribute value serialization #17

Closed iabudiab closed 6 years ago

iabudiab commented 6 years ago

HTMLKit erroneous HTMLElement attribute value serialization

This is basically the same bug as in #16 but with HTMLElement attribute values:

Serializing the following HTML:

<body key="& testing 0x00A0"></body>

would produce:

<body key="&amp; testing 0x00A0"></body>

Whereas it should be:

<body key="&amp; testing &nbsp;"></body>