See:

http://stackoverflow.com/posts/7300401/revisions

It doesn't do highlighting when I specify <!-- language: lang-mysql --> (or if the question is tagged mysql), but it will work fine if I use lang-sql instead.

I guess it's just that mysql is not associated with any particular highlighting, but that's a little weird since it's one of the most popular tags out there.

link|improve this question

48% accept rate
feedback

2 Answers

up vote 2 down vote accepted

There are three ways to achieve the appropriate syntax highlighting:

  1. Use the default syntax highlighting for the language associated with the tag attached to the question.
    For example, supply no syntax highlighting hint when the question is tagged which is associated with language "lang-sql"

  2. Explicitly supply a syntax highlighting "lang" hint from the supported language values.
    For example, <!-- language: lang-sql -->

  3. Explicitly supply a syntax highlighting "tag" hint that indirectly has a language associated with it.
    For example, <!-- language: mysql -->

For the answer you gave, any one of these three techniques would work but you mixed up the second and third techniques by combining the "lang-" prefix with the tag , which works when tag and language names coincide, but not in this case.

link|improve this answer
feedback

Read this question.

It happens because

  • lang-mysql is not supported
  • lang-sql is supported
link|improve this answer
feedback

You must log in to answer this question.

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