Syntax Highlighting in WordPress
- April 18th, 2010
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!");
}
}
}
