instaparse

If you're not trampolining your parser, why bother getting up in the morning?
2017-11-30T18:23:51.000301Z

hi, is there a possibility in instaparse to bind parse results? For example, when looking for a matching closing tag?

aengelberg 2017-11-30T18:34:18.000669Z

@mrchance sadly no. I'd recommend writing your parser so that it accepts any pair of tags (matching or not), and then separately do some validation to make sure the tag pairs are well formed.

2017-11-30T18:42:28.000047Z

ok, thanks. Should be easy enough to do in the transform step