The following line of Markdown isn't rendered the way I expect:
Press the <kbd>`</kbd> key then type ``foo bar baz``.
The actual HTML being rendered omits the <kbd> tags:
Press the ` key then type <code>foo bar baz</code>.
However, what I want is the following HTML:
Press the <kbd>`</kbd> key then type <code>foo bar baz</code>.
I've tried various combinations of escaping the backtick and using <code> instead of `, to no avail. How do I get the effect I want?
(The post in question is over here.)