First, thanks for the awesome stuff, getting it going was easy.
However, I'm having a few issues and can't seem to figure out a way around them. I'm trying to make a JSON tagger.
Here is how I'm defining things:
Private Shared ReadOnly Keywords As String() = New String() {""""}
Private Shared ReadOnly Operators As String() = New String() {"{", "}", "[", "]", ":", ","}
Here is an example of the output
The problems I see are:
The second double quote isn't colored like the first one.
The colon isn't colored
The comma after the double quote isn't colored
The closing brace and comma aren't colored
Also, is there a way to highlight the text between characters? I'd like to highlight the keys and values, and differently from each other if possible.
I'm sure I'm doing it wrong, but haven't been able to figure it out.
Thanks!