vscode-mdx
vscode-mdx copied to clipboard
Missing feature to highlight markdown markup inside jsx
We have a feature in mdx, using which we can write markdown syntax inside the JSX block of code.
<p>
I want to write **some inline** code here like `npm i`.
</p>
So the some inline in the above code should appear bold. I have a complete article about this on a blog. You can refer it, if needed
Yep, I should definitely add this.
Note that MDX v2 accepts markdown in more places:
<div>*hi*?</div>
<div>
# hi?
</div>
<main>
<div>
# hi?
</div>
</main>