We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5dddbf4 commit 67fe5faCopy full SHA for 67fe5fa
docs/rules/no-unescaped-entities.md
@@ -41,8 +41,9 @@ when the closing `>` is in the wrong place.
41
The preferred way to include one of these characters is to use the HTML escape code.
42
43
- `>` can be replaced with `>`
44
-- `"` can be replaced with `"`, `“` or `”`
45
-- `'` can be replaced with `'`, `‘` or `’`
+- `<` can be replaced with `<`
+- `"` can be replaced with `"`, `“`, `"` or `”`
46
+- `'` can be replaced with `'`, `‘`, `'` or `’`
47
- `}` can be replaced with `}`
48
49
Alternatively, you can include the literal character inside a subexpression
0 commit comments