Grollicus

Results 1 issues of Grollicus

I'm using an extension modifying the token stream via `filter_stream` to implement autoescape functionality for a latex renderer. Extension looks like this: ```python3 class MyExtension(Extension): def filter_stream(self, stream): for token...

parser