11

I've experienced a problem with <kbd> tag and the asterisk * on Stack Overflow.

How to reproduce:

  1. <kbd>*</kbd> bug <kbd>*</kbd>

    which provides: bug

  2. <kbd>**</kbd> bug <kbd>*</kbd>
    which provides: ** bug *

  3. <kbd>**</kbd> bug <kbd>**</kbd>
    which provides bug

Example without the issue:

/ bug *

1 Answer 1

25

You need to escape the asterisks since they are involved in formatting in markdown.

<kbd>\*</kbd> 

*

<kbd>\*\*</kbd> 

**

Same applies to _ if you want to show the _ key.

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.