I have a block of C# code that I want to write some HTML within:\[code\]if ( someCondition ) { %><span>its_important_my_span_has_no_spaces_around_it</span><%}int x = 0;// ...\[/code\]But in Visual Studio 2010, after the <%, I hit Enter and I get\[code\]if ( someCondition ) { %><span>its_important_my_span_has_no_spaces_around_it</span><% } int x = 0; // ...\[/code\]It even re-formats this way automatically (e.g., when I type the semicolon).I keep poking around the Options > Text Editor area in HTML and C# to figure out what to turn on or off but I'm at a loss.What am I doing wrong?Edit:If I highlight that first } and re-type it, it puts it in the right place.