Premise
I've noticed this with blockquotes. Suppose you have a user who posts a bit of log (I'll omit the blockquote for effect):
Server lookup complete 11-20 12:33:14.503 I/AirMail ( 2555): Connecting... 11-20 12:33:14.523 I/AirMail ( 2555): Connecting changed: connected=true, network type=WIFI 11-20 12:33:16.473 D/dalvikvm( 2555): GC_FOR_MALLOC freed 3495 objects / 249160 bytes in 80ms
and the original (blockquoted):
Server lookup complete
11-20 12:33:14.503 I/AirMail ( 2555): Connecting...
11-20 12:33:14.523 I/AirMail ( 2555): Connecting changed: connected=true, network type=WIFI
11-20 12:33:16.473 D/dalvikvm( 2555): GC_FOR_MALLOC freed 3495 objects / 249160 bytes in 80ms
Oops, all them lines get wrapped if not blockquoted. Blockquote it, but you still don't get individual lines. Obviously that's because line feeds don't translate to HTML, you need <br/> after each line.
You could use <pre> but it's not well known (I think?) and there's no shortcut for it.
Markdown suggests using > before every line. There's also a nice feature for quickly blockquoting a lot of text (ctrl-q), but this has nasty effects:
Server lookup complete 11-20 12:33:14.463 I/AirMail ( 2555): Connecting to 184.72.156.89:1227 11-20 12:33:14.473 I/AirMail ( 2555): Connection aborted, shutting down. Network type=WIFI 11-20 12:33:14.503 I/AirMail ( 2555): Connecting... 11-20 12:33:14.523 I/AirMail ( 2555): Connecting changed: connected=true, network type=WIFI 11-20 12:33:16.473 D/dalvikvm( 2555): GC_FOR_MALLOC freed 3495 objects / 249160 bytes in 80ms
I know the Markdown documentation says > is used to emulate e-mail style quoting, but for one, I've never seen it used like this on SO, and for two, even in e-mail, it's fugly.
Proposal
What I suggest is making ctrl-q put the > mark before each line and put a nice <br/> after each line. That way, that log posted won't look like a huge block of garbage, but rather a block that's readable and somewhat more like the original.
<br/>to add a line wrap – Michael Mrozek Nov 27 '10 at 17:36