The text formatting in the inline code is preserved with markdown syntax, which breaks the code. Additionally, the inline code is split into multiple segments, with no space inbetween.
Code block with formatting
Status
Bug
Source
// This is code
foo();
Markup
```
// This is **code**
foo();
```
Notes
The text formatting in the code block is preserved with markdown syntax, which breaks the code.