Something in the following JavaSript code block seems to be confusing the syntax highlitgher:
var data = JSON.parse(jsonstr); //parse the JSON to a JS object
var ids = [];
for(var i=0; i<data.length; i++){
//loop over the array and if the id is defined add it
if(typeof data[i].id !== "undefined"){
ids.push(data[i].id);
}
}
It's getting rendered like this:

The problem persists even after manually forcing the language with <!-- language: lang-js-->. It's working just fine for other answers to the same question.
What's wrong? Is it something on the code, or an issue with the highlighter script? The answer in question can be found here.