This is intended to be a and canonical answer to all the syntax highlighting bugs reported.

There's a bug in the syntax highlighting for the tag:

  • It's not highlighting the bar keyword correctly...
  • or, there's some escaping problem that means that everything's being rendered as a comment
  • etc.

Return to FAQ index

share|improve this question
3  
If people agree with this I'll start closing all the "there's a prettify bug" questions as duplicates of this... If they don't, oh well :-); it was worth the attempt! – ben is uǝq backwards Jun 12 at 13:13

1 Answer

up vote 6 down vote accepted

Stack Exchange does not have a syntax highlighting engine. It uses Google's Prettify.js. Any bug in Prettify or change to the highlighting behaviour cannot be fixed directly by Stack Exchange but must be done to the original code. You can either:

If you want to ensure that an issue you raised is fixed quickly, it's best to include the fix in the report.

If the fix has already been implemented then ask a question on meta to request that a new version of Prettify be deployed.

If your post doesn't have the correct highlighting it's possible it's not supported. Please look at the list of supported languages. If yours is not on there it needs to be created within the Prettify project before it can be deployed by Stack Exchange. If a language that could be applied to a tag is already in there please raise a here on Meta.

Before you do any of that, are you sure that you've got the correct highlighting turned on? Behind the scenes Stack Exchanges uses the tags on the question to infer the language you are using. If there's more than one tag that has syntax highlighting, it uses a default and lets Prettify infer what's the best language to use.

Try to explicitly override the highlighting in use with your language of choice:

<!-- language: lang-or-tag-here -->

    code goes here

For instance,

<!-- language: javascript -->

    var a = 3;
    while(not (a > 0)){
      alert("JavaScript code <b>goes</b> here.");
    }

renders as:

var a = 3;
while(not (a > 0)){
  alert("JavaScript code <b>goes</b> here.");
}

The full list of available languages is available here.

share|improve this answer

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged