- initial version of a transform module, that can transform a parce tree
to any structure you want using a Transform class, potentionally using
caching on contexts
- added util.Observable, and use it in TreeBuilder to emit events
- added unicharclass module
- added using(), like in Pygments, it lexes a match with another lexicon
- added JavaScript parser
- added Python console session parser (with prompts)
- added basic GNU Texinfo parser
- added groff/troff parser, even includes LilyPond (as per the groff manual!)
- fixed parsing resume when first part of a match was skipped or not used
(e.g. r'( )(")', bygroup(skip, String) or r' (")', bygroup(String))