-
Notifications
You must be signed in to change notification settings - Fork 225
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Allow apostrophes in attributes (#3374)
- Loading branch information
kek kek kek
authored
Nov 2, 2023
1 parent
8a36877
commit 3d76fd2
Showing
2 changed files
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -462,6 +462,7 @@ impl Attribute { | |
|| ch == '=' | ||
|| ch == '"' | ||
|| ch == ' ' | ||
|| ch == '\'' | ||
}) | ||
.then_some(()); | ||
|
||
|