SyntaxHighlighter 2.0

SyntaxHighlighter 2.0 has recently been released, featuring smart line wrapping, 100% standards compliance, additional themes and hosted versions of the source files, as well as good documentation on the new wiki. The effort put into this release by Alex Gorbatchev should be commended.

I was pleased to find out that a new version of SyntaxHighlighter has been released. New features including smart line wrapping, 100% standards compliance, additional themes and hosted versions of the source files. The documentation on the new wiki is also very good. It is obvious that Alex Gorbatchev has put a lot of effort into this release and should be commended. Below is a little “hello world” sample highlighted using the new version:

using System;
namespace HelloWorld
{
/// <summary>
/// A "Hello World!" program in C#.
/// </summary>
class Hello
{
/// <summary>
/// The main entry point.
/// </summary>
static void Main()
{
System.Console.WriteLine("Hello World!");
}
}
}