I loaded this piece of code into ST3 and when the following text was parsed as a raw string it caused a major coloring error. I guess it fails out because when [ ] is used inside a string it tries to match them and color the content.

Solutions that solves the problem temporarily is to remove the r before the string and then escape all special characters inside the string. This is not a desired solution tho.
I loaded this piece of code into ST3 and when the following text was parsed as a raw string it caused a major coloring error. I guess it fails out because when
[ ]is used inside a string it tries to match them and color the content.Solutions that solves the problem temporarily is to remove the
rbefore the string and then escape all special characters inside the string. This is not a desired solution tho.