I have a been an active member of SO for about a month so far. One of the most common edits I do every day is normalizing spaces in code posted by new users (very rarely - old users). I probably spend at least 15 minutes every day doing it. For example, OP posts something like this:
{
//code goes here
}
What I do is go and manually fix it to this:
{
//code goes here
}
With three lines, does not look like a big deal, but if the code spans several pages, I would not even bother. Sometimes it will stay like this forever, because nobody bothered. It gets the answer, it's accepted and later being referenced by veterans of SO. It certainly does not look very cool, but nobody does anything about it.
It would be useful for me as well (even though I am not a new user), because when I post VB.NET code, it gets indented by 2-4 spaces automatically (by VS). When I format it as code, it gets extra spaces, which I need to remove. Not a big deal, if I never change the code, but I do sometimes change it 3-4 times, when there is a problem reported with it. And every time I paste back from VS, I need to manually remove spaces.
I suggest to have this option automated, for example available from the editor, could be near the format as code button. If it's very hard to implement, please suggest a workaround, i.e. a website that reliably normalizes popular languages. Should support at least VB.NET, C# and XML.