Improve pattern matching
This commit is contained in:
parent
bd95d0d51b
commit
6939ec17a2
8 changed files with 76 additions and 67 deletions
14
gen/tries.json
Normal file
14
gen/tries.json
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"CONTENT_TYPE": {
|
||||
"</": "ContentType::End",
|
||||
"\u0009": "ContentType::Whitespace",
|
||||
"\u000a": "ContentType::Whitespace",
|
||||
"\u000c": "ContentType::Whitespace",
|
||||
"\u000d": "ContentType::Whitespace",
|
||||
"\u0020": "ContentType::Whitespace",
|
||||
"<!--": "ContentType::Comment",
|
||||
"<!": "ContentType::Bang",
|
||||
"<": "ContentType::OpeningTag",
|
||||
"&": "ContentType::Entity"
|
||||
}
|
||||
}
|
||||
Reference in a new issue