Skip to content

Commit

Permalink
Merge pull request #2015 from stevemao/patch-1
Browse files Browse the repository at this point in the history
add more escape examples
  • Loading branch information
ljharb committed Oct 14, 2018
2 parents 5dddbf4 + 773277d commit bc6a1ba
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 bc6a1ba

Please sign in to comment.