Syntax highlighter
At work today I was asked by one of our developers if there was a way to make proper syntax highlighting of their code samples in WordPress. On the case I of course did some quick research and stumbled upon this plugin: http://en.support.wordpress.com/code/posting-source-code/
As you can see from the code sample below this is perfectly possible. Even for those using a more advanced “language” than I
// Hello1.cs
public class Hello1
{
public static void Main()
{
System.Console.WriteLine("Hello, World!");
}
}