While writing this comment, I noticed an annoying issue with the way the StackExchange software formats in-line code snippets (<code>...</code> or `...`) — any groups of consecutive whitespace are collapsed into a single space when the markup is displayed. For example, if I write this:
To put two spaces between each element, use `array.join(" ")`.
It will be rendered like this:
To put two spaces between each element, use
array.join(" ").
Notice that there appears to be only one space between the quotes in the rendered version. Worse yet, even if you cut and paste the code snippet directly into a program, you'll most likely end up with only one space. (At least, that's how it works in Firefox, and probably in most other browsers too.)
In posts this isn't so bad, because we can always use full code blocks if we have to, but this problem makes posting white-space sensitive code snippets in comments very difficult.
However, there is a very simple fix for this problem: just add the following CSS rule to the site style sheets:
code { white-space: pre-wrap; }
This will have the effect of preventing browsers from collapsing consecutive spaces into one in code snippets. Long lines will still wrap normally, so this change won't affect the appearance of most existing code snippets (and, where it does, I suspect the change will be an improvement at least as often as not).
As a minor side effect, this change makes browsers honor line breaks inside in-line code snippets. I suspect at least some users (myself included) would consider this a useful feature. If this is not desired for some reason, a simple work-around would be to strip line breaks from code snippets during Markdown parsing.
I've tested the effect of this change in Firefox using a local style sheet, and it seems to work fine. The white-space: pre-wrap declaration is not supported by old versions of Internet Explorer (IE7 and older), but in those browsers, the code snippets should simply continue to look as they do currently.
Edit: In the comments below, Dennis describes a workaround using non-breaking spaces ( , U+00A0). This is somewhat inconvenient in comments (or using the backtick syntax in posts), since the non-breaking spaces need to be typed in literally, but it does provide a way to display several consecutive spaces in in-line code snippets if one really needs to. Still, the existence of this workaround doesn't eliminate the reasons for this feature request stated above.
multiple spaces. Result: Multiple non-breaking spaces (Alt-0160) don't get collapsed. – Dennis Feb 10 '12 at 16:30 is cheating. :-) (And, unfortunately, rather difficult cheating, since you can't use HTML entities inside backticks. Alas, I believe theAltkey combo you suggest only works on Windows.) – Ilmari Karonen Feb 10 '12 at 16:32Ctrl + Shift + U A 0seems to work for me. And on Firefox, it even turns those non-breaking spaces into normal spaces when I copy and paste them (although I believe this may be browser-dependent). – Ilmari Karonen Feb 10 '12 at 16:45array.join(" "). No, it seems not. I agree with the OP, multiple spaces should be enabled on inline codes. – caiosm1005 Jan 17 at 16:28