[](https://crates.io/crates/html-entity-fix)
Decode HTML entities (`&`, `<`, `>`, `"`, `'`,
`'`, common typography) inside text that was supposed to be plain.
Catches LLMs that over-correct out of an HTML context.
```rust
use html_entity_fix::fix;
assert_eq!(fix("AT&T"), "AT&T");
assert_eq!(fix("<tag>"), "<tag>");
```
Zero deps. MIT or Apache-2.0.