I'm getting "Max buffer length exceeded" errors while parsing large text nodes. Looking at the code, this line seems to indicate that the parser should be able to handle strings that are larger than MAX_BUFFER_LENGTH. But closeText() doesn't exist. In practice, it never gets called because the buffer is named "textNode" instead of "text" (code).
I can work around the issue by increasing MAX_BUFFER_LENGTH, but being able to deal with arbitrary string sizes would be nicer, of course.
I'm getting "Max buffer length exceeded" errors while parsing large text nodes. Looking at the code, this line seems to indicate that the parser should be able to handle strings that are larger than
MAX_BUFFER_LENGTH. ButcloseText()doesn't exist. In practice, it never gets called because the buffer is named "textNode" instead of "text" (code).I can work around the issue by increasing
MAX_BUFFER_LENGTH, but being able to deal with arbitrary string sizes would be nicer, of course.