Take a look at this formatted code:

int a;
string b = "test";
int c;
string d = @"test";
int e;
string f = @"\";
int g;
int h;
int i;

The last three lines are colored to look like strings.

This also fails, although it's not syntacticly correct.

string a = "\";
int i;

Fixing the bug in the second example does work, however.

string a = "\"";
int i;
share|improve this question
2  
In what language? I think this is a specific feature of C#, and the syntax highlighter is language agnostic. – Andreas Bonini Sep 17 '10 at 22:52
In Objective-C the first example would be correctly highlighted. #2 should be the correct highlighting in the languages i can think of. – Georg Fritzsche Sep 18 '10 at 1:11

2 Answers

The code tag has never been intended to understand or support all languages. See here and here

As it is Prettify used, feel free to contact the project.

share|improve this answer

A work-around to prevent this spilling into following lines is just use a comment at the end like this:

string s = @"Break the syntax highlighter\"; //"// or will it?
string t = "I look just fine.";

The semi-colon and initial comment characters are still colored wrong, but at least the remainder of the code is readable.

share|improve this answer
This is pretty sweet... even though you do have 3 characters colored wrong, but it's much better than destroying the entire rest of the code coloration. – Peter Ajtai Sep 17 '10 at 23:17

You must log in to answer this question.