As per Jeff's suggestion here in the comments.
You can use this question as a formatting sandbox (if you can edit Community Wiki questions) and you can post answers if you want to test out formatting there as well.
Beware that since the changes to syntax highlighting in December 2010, and the inline hints added March 2011, no syntax highlighting is applied unless the question's tags or an inline hint enable it. So, to test highlighting here in the sandbox:
Set some language tags to this question:
See the explanation and the list of languages.
Adding clashing tags, such as both java and perl, enforces a fallback to
default, which is different from "no highlighting".(These tags are currently set on this question.)
Or: on the start of a line, specify a language inline using
<!-- language: lang -->hints, and indent the code 4 spaces as usual:<!-- language: lang-html --> While not hinted otherwise: <html> source <b>goes</b> "here". <!-- language: lang-js --> var a = 3; while (not (a > 0)) { alert("JavaScript code <b>goes</b> here."); }Or:
Save your post.
Use something like Firebug (Firefox), Web Inspector (Safari, Chrome) or Developer Tools (Internet Explorer 8) to edit the resulting HTML.
Find the
<pre>element and add the attributeclass="prettyprint", or change it into something more specific, likeclass="lang-vb prettyprint".Run the following in the location bar:
javascript:prettyPrint();







1` 1` characters – agf Oct 2 '11 at 0:43formattinglooksa lot `like` this. – Paul Martel Jan 10 '12 at 22:48