This paragraph has a < character without escaping.
This paragraph has a > character without escaping.
This paragraph has an & character without escaping.
Multiple unescaped: < > & < > &
In context: if x < 5 && y > 10 then...
Math expression: 3 < 5 & 5 > 3
Code-like: function
Mixed: < is escaped but < is not
Mixed: > is escaped but > is not
Mixed: & is escaped but & is not
if (x < 5 && y > 10) {
return x & y;
}
Incomplete: < without semicolon
Incomplete: > without semicolon
Incomplete: & without semicolon
Unknown: &unknown; &fake; ¬real;
Mixed: < is numeric but < is raw
Mixed: > is numeric but > is raw
Mixed: & is numeric but & is raw