If you're only interested in preserving line breaks but not whitespace then I suggest using:
body {
white-space: pre-line;
}
This will collapse multiple consecutive white space characters into one but preserve line breaks. The downside is that it's only supported in IE versions 8 and up.