Following the instructions in Jeff's post, I have Writer alive and blogging. This is much better than the default editor and has the advantage of allowing off line composition.
Some test code:
public static String Base64StringEncode(String input)
{
byte[] encbuff = System.Text.Encoding.UTF8.GetBytes(input);
return System.Convert.ToBase64String(encbuff);
}
I like this.