-
Notifications
You must be signed in to change notification settings - Fork 177
Open
Labels
Description
It looks like this can't parse a tag with a namespace, e.g. <foo:bar ...>
Lines 999 to 1004 in 25096c7
| /* Tag name */ | |
| if(off >= line_end || !ISALPHA(off)) | |
| return FALSE; | |
| off++; | |
| while(off < line_end && (ISALNUM(off) || CH(off) == _T('-'))) | |
| off++; |
Can we allow it to parse tags with namespaces? i.e. allow : in the tag name.