Jean Abou Samra
Jean Abou Samra
It still fails because your latest push introduces CRLF line endings. I am going to do this update myself and push the result to your branch.
There is still https://github.com/pygments/pygments/pull/2012#discussion_r820912303 though.
> I'm not super happy to merge code without tests but I don't see an easy way to test image based output. No, I don't see one either, especially that...
Looking at the `JavaLexer` in `pygments/lexers/jvm.py`, I see the following rules for strings: ```python 'root': [ ... (r'"', String, 'string'), ... ], ... 'string': [ (r'[^\\"]+', String), (r'\\\\', String), #...
Sure. If nobody commented on the issue, it is still available. Feel free to take it.
I don't believe this exists, but there is a way around. Look at `SchemeLexer` and `LilyPondLexer` to see how this works. Basically, you can do ``` # C lexer: tokens:...
How about writing it and preparing a PR? https://pygments.org/docs/lexerdevelopment/ has all you need to know.
How to write your own styles is covered at https://pygments.org/docs/styles/. Depending on how you use Pygments, the way to pick a style will vary, e.g. in Sphinx this would be...
If you open a PR, there's a high chance it will be accepted.
> Based on the PR comment by Jean-Abou-Samra What do you mean? When there are several reviews, you need to address all of them :-)