This is my first use of Windows Live Writer to post a blog. I don't know how it'll go, but I thought I'd give it a try and see if it behaves better, especially with posting code.
Here's a snippet of code from a project I'm working on:
/// <summary>
/// Gets the default adapter.
/// </summary>
public static Adapter DefaultAdapter
{
get
{
return (Adapter)CIConfiguration.Adapters[DEFAULT].Value;
}
}
Hmm--that didn't seem to be much different from using the web interface, other than I lost all of the color. :(
Anybody know of a good blog editor that will preserve the formatting of code and such?
Update: So I found a plugin that will allow better pasting. Only caveat is that you can't paste using CTRL-V, instead you have to use the insert menu, but here's what it looks like:
public override string Merge(IXPathNavigable doc)
{
//get the event id (
}Much better! Now I need to find out what other types of plugins are available!