A backslash automatically added before an asterisk in a codespan

Whenever I use the Docs tab and type an asterisk in a codespan, like `*`, and then make the editor lose focus, a backslash is automatically added before it, making `\*`. This symptom is repeating: it becomes `\\*`, `\\\*` and so on.

I am using Postman v11.84.2, the latest version at this moment, on Windows 11 25H2.

Hey @kwon0408-a86efe7c :waving_hand:

Welcome to the Postman Community! :postman:

It looks like it applying the syntax for a multiple line comment but it is weird behaviour. Is it blocking you from doing something specific?

If you needed it, you could use the codeblock or the Markdown editor as a workaround?

Currently I cannot share regexes containing asterisks, for instance ^[A-Za-z]{3}\*$, so I am using a workaround excluding the asterisk out of the codespan like ^[A-Za-z]{3}\*$ (Markdown: `^[A-Za-z]{3}\`\*`$`).

The same thing happens when switching from Postman editor to Markdown editor, but not vice versa.