I'm writing a parser for some marked-up data, and I'd like to get pyparsing to discard things like start and end tags in the final result, leaving just the data.
Can I do this, or do I just have to name the value appropriately and pull them out manually?
makeHTMLTagsandmakeXMLTags- these helpers do more than just add '<>'s around a string, but also build in support for embedded attributes, upper/lower case variations, and stray whitespace. – Paul McGuire Aug 15 '11 at 0:47