Have you read the Contributing Guidelines on issues?
Prerequisites
Description
Code included within code tags should be displayed inline. This behavior continues to work as expected even if elements within code tags are bolded with b tags or italicized with i tags. But display behavior changes when some other tags are used within code tags (e.g., at least s and u tags). The display changes from inline (desired) to block as if the content within the code tags should be an entire code block.
Input:
# Possible Bug (Demo)
- <code>[1,2,3]</code>
- <code>[1,<b>2</b>,3]</code>
- <code>[1,<i>2</i>,3]</code>
- <code>[1,<s>2</s>,3]</code>
- <code>[1,<u>2</u>,3]</code>
Output:

Reproducible demo
https://stackblitz.com/edit/github-dk64mi?file=docs/intro.md
Steps to reproduce
- Navigate to the repro link and observe the inconsistent behavior on the
docs/intro page.
Expected behavior
Every bullet in the list should have the content within code tags displayed inline.
Actual behavior
The behavior is as expected when no tags at all are used within the code tags or when b or i tags are used. But the behavior is unexpected when s or u tags are used. The content is treated as if it should be in its own code block instead of inline.
Your environment
Self-service
Have you read the Contributing Guidelines on issues?
Prerequisites
npm run clearoryarn clearcommand.rm -rf node_modules yarn.lock package-lock.jsonand re-installing packages.Description
Code included within
codetags should be displayed inline. This behavior continues to work as expected even if elements withincodetags are bolded withbtags or italicized withitags. But display behavior changes when some other tags are used withincodetags (e.g., at leastsandutags). The display changes from inline (desired) to block as if the content within thecodetags should be an entire code block.Input:
Output:
Reproducible demo
https://stackblitz.com/edit/github-dk64mi?file=docs/intro.md
Steps to reproduce
docs/intropage.Expected behavior
Every bullet in the list should have the content within
codetags displayed inline.Actual behavior
The behavior is as expected when no tags at all are used within the
codetags or whenboritags are used. But the behavior is unexpected whensorutags are used. The content is treated as if it should be in its own code block instead of inline.Your environment
Self-service