If there's no space between the selector and an equal sign, the equal sign gets colorized as a selector instead of an operator. In the following, adding a space between title and = fixes the color of =.
```
div#id.left(class='user user-' + name).container
h1.title= name
```
Wrong:

Correct:

Comments: Test case added
```
div#id.left(class='user user-' + name).container
h1.title= name
```
Wrong:

Correct:

Comments: Test case added