[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: luaexpat questions
- From: Wilford Brimley <wilfordbrimley@...>
- Date: Sat, 8 Jul 2006 23:30:10 -0700
hi, i had some questions about luaexpat.
it seems to be missing div tags..is that in spec?
also, i'm trying to figure out how to deal with non-well formed pages...
i get "error closing parser: not well-formed (invalid token)" on
stuff like:
>>>> document.write('<scr' + 'ipt src="' + adserver
and
>>>> <a href="http://www.place.com/contentlatest.asp?
tab=reviews&user=name">reviews</a> -
i can see the first one posing problems with "<scr' + ' ..., but the
second seems relatively generic as far as html goes...not sure why
that's causing problems.
is there a way to cleanly stop parsing from within a callback
handler...i'm hoping to use regexes to match subsections of the
document and then expat those, but they'll have unmatched closing
tags at the end, and i want to stop parsing when a depth count
becomes less than 0.
alright, thanks for any help...