Comments allow for backticks to be escaped. However, the very same formatting does not work in questions and answers.

Example:

`foo\`bar`

This shows as: foo\bar`.

But one would expect this to format foo`bar, all in monospace, just like when used in comments.

Or, in the resulting HTML:

Currently: <code>foo</code>bar`
Expected:  <code>foo`bar</code>

Note that, as a workaround, typing <code>foo`bar</code> works fine.

share|improve this question
See `this` for an example. – marcog Dec 19 '10 at 23:31
In the above comment, the second backtick follows a backslash. – marcog Dec 19 '10 at 23:31
See this` for example`. – marcog Dec 19 '10 at 23:32
In the above comment, the second backtick (after this) follows a backslash. – marcog Dec 19 '10 at 23:32
1  
If either of the backticks is escaped (and thus should not act as some Markdown formatter), then there is no pair of backticks anymore, right? Hence: no monotype either? Sounds fine to me. (Your "while" in your question is missing some text, maybe fixing that makes things clear.) – Arjan Dec 19 '10 at 23:43
testingtesting ` testing -- I don't understand how this is broken. – Jon Seigel Dec 19 '10 at 23:48
@Arjan So is escaping of backticks a feature? If so, it's not supported in qestions and answers. See my comment here which shows how I discovered this "issue". (No, I'm not missing anything in my "while".) – marcog Dec 19 '10 at 23:51
@Jon It might be working as expected, it just wasn't as I expected it from not seeing the same behaviour in questions/answers. – marcog Dec 19 '10 at 23:52
I find it odd that escaping a backtick within a monotype block does not yield an escaped backtick when used in a normal post... In other words: the way the comments do it, makes more sense to me. (Your "while" totally confuses me, but well, I'm not a native English speaker.) – Arjan Dec 19 '10 at 23:57
@Arjan Now that I understand the situation I fully agree. Should I post a separate meta entry? (I'm fairly new to this side) – marcog Dec 19 '10 at 23:59
What's confusing me is how that comment even got syntax-highlighted at all. When I try to reproduce that on Meta, it doesn't monospace at all. – Jon Seigel Dec 20 '10 at 0:00
@Jon Reposting that comment here: What's the \\Files\` for? And do you really mean to append .txt` – marcog Dec 20 '10 at 0:03
@marcog, or change this very question into describing the behaviour of normal posts? (I can then delete my answer.) – Arjan Dec 20 '10 at 0:04
@Jon So it does the same. There is an escaped backtick after the backslash after "Files" and another backtick before ".txt". – marcog Dec 20 '10 at 0:04
Okay, I see now, you have backticks around .txt as well. – Jon Seigel Dec 20 '10 at 0:06
show 1 more comment

2 Answers

We might support double-backticks in comments at some point:

comment doesn't support multiple backticks code span

However, for now, we are supporting the escaped backtick

`blah blah \` blah`

within a code block.

The correct way to express this per the Markdown spec is:

``blah blah ` blah``
share|improve this answer

In questions/answers you can use double (or multiple) backticks:

``foo`bar``

gives foo`bar.

share|improve this answer

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged