Improve pattern matching

This commit is contained in:
Wilson Lin 2020-01-02 14:14:40 +11:00
commit 6939ec17a2
8 changed files with 76 additions and 67 deletions

14
gen/tries.json Normal file
View 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"
}
}