The diary of a .NET Developer, working on an unlaunched startup project. Also, I live and work in Southern Oregon.

Sunday, January 18, 2009

Create Syntax Highlighted code in Blogger using Live Writer

I found a Windows Live Writer plugin to do syntax highlighting of text.

You can install plugins by simply copying the dll to your plugin directory.

Here is a test:

    public class PuzzleSolver
{
private string[] rows;

public PuzzleSolver(string[] rows)
{
this.rows = rows;
}

public PuzzleSolution SolveForWord(string word)
{


}
}



No comments:

Post a Comment