v3.0.0
This release makes a breaking change to the escaping behavior: we no longer escape the backtick (`
) and we now escape the equals sign (=
).
Escaping the backtick provided no real protection as it's not a special HTML character. The equals sign, however, is indeed a special HTML character within some parts of a tag.
What's Changed
- revert: escape backtick by @gurgunday in 868abe5
- feat: escape
=
by @gurgunday in #24
Full Changelog: v2.3.0...v3.0.0