Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Disable HTML escaping when JSON encoding values (#288)
## Which problem is this PR solving? Husky JSON encodes attribute values in certain circumstances (eg deeply nested attributes). However, by default the JSON encoder escapes HTML characters which makes using the values more difficult later. This change updates the JSON encoder to not escape HTML characters. ## Short description of the changes - Disable HTML escaping in the JSON encoder by calling `SetEscapeHTML(false)` - Add unit test to verify an attribute that contains HTML is not escaped
- Loading branch information