27 Feb 2013

Code syntax highlighting in Blogger

I've added syntax highlighting to this blog's template. Here's an example:

// Comment
public class Testing {
    public Testing() {
    }
 
    public void Method() {
        /* Another Comment
        on multiple lines */
        int x = 9;
    }
}

Tutorial here