If you're trying to do inline code like this you should probably not do that. The problem is that it's ambiguous — you can't tell whether the slash is supposed to be included in the code unless you force the use of \\ to produce a slash or something. No matter what you do, using surrounding characters will produce some sort of ambiguity like this. Should three backticks be rendered as one block with a backtick inside it, or a block with a backtick following it, or a block with a backtick preceding it? In this case the answer is none of the above: ```. There's no simple way to make all 4 versions possible.
The solution with the "unnecessary" space seems good to me, though — it's certainly not changing the meaning of your examples. But if needed, just don't use inline blocks.
Use a <pre> block like so:
` one backtick
` surrounded by one backtick `
`` two backticks
`` surrounded by two backticks ``
``` etc.
cd `brew --prefix`
Or simply indent by four spaces:
` one backtick
` surrounded by one backtick `
`` two backticks
`` surrounded by two backticks ``
``` etc.
cd `brew --prefix`
``cd `brew --prefix` ``(Q&A) and`cd \`brew --prefix\``(comments) ... phew, that was a trip down the markdown wormhole! – SWrobel Sep 23 '11 at 17:32