Note that this question is a bit obsolete, because we now infer prettify language type based on the tags.
See more:
Changes to syntax highlighting
This is now implemented. In addition to tag inference (a recent change), you can manually specify the language as a hint to Google Code Prettify.
The spec is:
<!-- language: lang-or-tag-here -->
code goes here
<!-- language: lang-or-tag-here -->
code goes here
You may use either a tag or a prettify language code to specify, though prettify language codes are always guaranteed to work regardless of what language the tag happens to be set to.
Use <!-- language-all: lang-or-tag --> to use the given highlighting for all the following code blocks.
The complete list of supported prettify code languages is:
- lang-none
- lang-default
- lang-bsh
- lang-c
- lang-cpp
- lang-cs
- lang-csh
- lang-css
- lang-hs
- lang-html
- lang-java
- lang-js
- lang-lisp
- lang-lua
- lang-ml
- lang-perl
- lang-php
- lang-py
- lang-proto
- lang-rb
- lang-scala
- lang-sh
- lang-sql
- lang-vb
- lang-xml
this is derived from the prettify read me which documents these 'core' languages:
<pre class="prettyprint lang-html">
The lang-* class specifies the language file extensions.
File extensions supported by default include
"bsh", "c", "cc", "cpp", "cs", "csh", "cyc", "cv", "htm", "html",
"java", "js", "m", "mxml", "perl", "pl", "pm", "py", "rb", "sh",
"xhtml", "xml", "xsl".
</pre>
plus some of the optional extension lang-*.js files noted in the source folder, which currently contains
lang-apollo.js
lang-clj.js
lang-css.js
lang-go.js
lang-hs.js
lang-lisp.js
lang-lua.js
lang-ml.js
lang-n.js
lang-proto.js
lang-scala.js
lang-sql.js
lang-tex.js
lang-vb.js
lang-vhdl.js
lang-wiki.js
lang-xq.js
lang-yaml.js
'\'makes the rest of the code act as though it is inside a string. – ErikE Jan 26 '11 at 19:25