Author Archive

Syntax Highlighting in WordPress

I looked around for a syntax highlighter for WordPress, and I found SyntaxHighlighter Evolved. This one supports over 20 languages! It’s got quite a few settings, too. Here’s a Hello World sample in C#:

using System;

namespace HelloWorld
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Hello World!");
        }
    }
}
Page 3 of 3123