Skip to content

Commit

Permalink
add more escape examples
Browse files Browse the repository at this point in the history
  • Loading branch information
stevemao authored and ljharb committed Oct 13, 2018
1 parent 5dddbf4 commit 773277d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/rules/no-unescaped-entities.md
Expand Up @@ -41,8 +41,8 @@ when the closing `>` is in the wrong place.
The preferred way to include one of these characters is to use the HTML escape code.

- `>` can be replaced with `>`
- `"` can be replaced with `"`, `“` or `”`
- `'` can be replaced with `'`, `‘` or `’`
- `"` can be replaced with `"`, `“`, `"` or `”`
- `'` can be replaced with `'`, `‘`, `'` or `’`
- `}` can be replaced with `}`

Alternatively, you can include the literal character inside a subexpression
Expand Down

0 comments on commit 773277d

Please sign in to comment.