Skip to content

Commit

Permalink
fix: tagname-specialchars description (#714)
Browse files Browse the repository at this point in the history
  • Loading branch information
coliff authored Nov 12, 2021
1 parent e027f30 commit 4d702d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/rules/tagname-specialchars.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Rule } from '../types'

export default {
id: 'tagname-specialchars',
description: 'All html element names must be in lowercase.',
description: 'All special characters must be escaped.',
init(parser, reporter) {
const specialchars = /[^a-zA-Z0-9\-:_]/

Expand Down

0 comments on commit 4d702d8

Please sign in to comment.