Skip to main content

All Questions

1 vote
0 answers
58 views

Python syntax still highlighted incorrectly on SO [duplicate]

Possible Duplicate: Python's “//” operator wrongly treated as a comment (part 2) I just noticed it in the first revision of this answer, and after a quick search here on meta it turned out the ...
Lev Levitsky's user avatar
11 votes
1 answer
345 views

Python's "//" operator treated as a comment [duplicate]

s = 5 // 2 if s == 2: print(s) As you can see the highlighting system treats Python's floor division operator // as the beginning of a comment. But // is not a comment in Python. Is there any ...
Maciej Ziarko's user avatar
5 votes
2 answers
159 views

Code formatting does not work for JavaScript [closed]

I think it used to work in the past but now code highlight has no effect on JavaScript whatsover. jQuery example: $(document).keypress(function (event) { var key = String.fromCharCode(event....
user avatar