Syntax Highlighting with a plugin

I've been playing around with writing a syntax highlighting plugin for Windows Live Writer Beta.  It allows me to paste some C#, VB.NET or XML code into a textbox and then uses the squishyWARE syntax highlighter to set HTML coloring.  Fun (and easy!).  Great for code samples.  Here's some output:

public class RowStatus
{
    public const int BadMap = 1;
    public const int BadBaro = 2;
    public const int BadCA50 = 3;
}

It's not the same as the VS.NET 2005 IDE, but it's nice to be able to just paste the text in textbox and have the plugin do the rest.

<Root>
    <Plugin Text="XML Too" />
</Root>

No Comments