THIS IS NOT A BUG.
THIS IS BY DESIGN.
It becomes very difficult to talk about code when
your_variable_names_are_suddenly_underlined
Intra-word emphasis is a bad idea and we have EXPLICITLY disabled it.
See: http://blog.stackoverflow.com/2008/06/three-markdown-gotcha/
1) Markdown’s single biggest flaw is its intra-word emphasis.
I don’t think anybody writes:
un*fricking*believable
often enough to justify making it nearly impossible to talk about tokens with underscores in them:
some_file_name
is interpreted as:
some<em>file</em>name
It even works across word boundaries:
file_one and file_two
becomes:
file<em>one and file</em> two
Whenever you’re writing tokens with underscores you have to make absolutely sure you’re in a backtick-delimited code span. The same problem will also nail you on equations like a*b*c, but that seems to pop up less frequently.
Showdown follows the reference implementation on all this, but in WMD I do a little preprocessing to hack the idiocy away: basically I just backslash-escape any underscores or asterisks that might trigger it. It’s a flagrant violation of the standard, but since it’s a pre-pass that should produce identical output with any Markdown processor, I feel justified. Unfortunately my hack did screw up one edge case (which I don’t have in front of me) and there isn’t any way to disable it. Both those things will change in the next release.
**x**ml n**ib**" gets rendered like this: x**ml n**ib – Kip Jul 2 at 2:21