Can anyone share experience with parsing XML chunks embedded in a non-XML file?

I am implementing an Edge-Side-Includes[1] processor. Edge-Side-Includes elements are not necessarily embedded in XML- or well-formed XML files and this poses the question, how to go about finding and then parsing such elements.

Has anyone done something similar?

[1] http://www.w3.org/TR/esi-lang

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

Seems like the best option is to either embed the XML tokenizing into the overall tokenizer or identify the chunks and hand them to an XML parser individually.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.