You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix shortcode attribute parsing when content passes through HTML sanitizers that encode = and " as numeric entities (=, "). htmlspecialchars_decode() alone does not decode numeric entities, so attributes were mis-parsed as numeric-indexed fragments instead of named key/value pairs.
Tests
Add package regression test HtmlEntityAttributeParsingTest covering numeric-entity attribute decoding via parseAttributes() and full compile() flow.