It seems that something is shoving the contents of the post body into the class of the PrettyPrint <pre> tag (using the answer ChrisF linked to as an example):

Both <pre> tags got this same convoluted class (visible in the second underlined <pre> tag, on the left) when the formatter kicked in. I removed the extra material from the class attribute on the first tag, and you'll note that the corresponding preview went back to normal.
I'm not sure yet what causes the content of the post to be put into the class attribute, unfortunately. However, the reason why there's an issue, and the reason why Jeff couldn't reproduce it, is because the contents of your post have to have a class name that corresponds to something defined in the site's stylesheet.
In your case, you have the word "answer" in the text above your post (not visible in the question), which assigns the <pre> tag a width of 730px based on the .answer CSS class. If you remove that word, you should notice the problem go away.
Additional Information
So master.js has a function called styleCode() that calls addClass() on each <pre> tag with its parameter, if its parameter isn't empty. But it's parameter is never empty, since typeWatch() in question.js will only call the callback (in this case styleCode()) when $('#wmd-input').val() is of a certain length and has changed, and it will call said callback with that value.
This seems to imply that the contents of the post will always be put into the class name of each pretty-printed <pre> element, and I can't see what adding the parameter as a class name is supposed to be doing. So, unless there's a reason not to, it looks like fixing things would be as simple as modifying the styleCode() function by removing the following commented out lines:
$("pre code").parent().each(function () {
if (!$(this).hasClass("prettyprint")) {
$(this).addClass("prettyprint");
//if (c != "") {
// $(this).addClass(c)
//}
a = true
}
});
There could be a reason it's assigned that way, but I didn't see anything obvious. Naturally making guesses based on minified JavaScript isn't 100% reliable to begin with, so hopefully the dev team will have a final say on this. :)
[can-repro]in Chrome 8.0.552.200 beta. – Dennis Williamson Dec 10 '10 at 1:12[can-repro]" as in "I see it, too." What did you think I meant? – Dennis Williamson Dec 10 '10 at 1:48