vscode-mdx icon indicating copy to clipboard operation
vscode-mdx copied to clipboard

Missing feature to highlight markdown markup inside jsx

Open varundevpro opened this issue 5 years ago • 2 comments

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

varundevpro avatar Jan 18 '20 04:01 varundevpro

Yep, I should definitely add this.

silvenon avatar Jan 18 '20 11:01 silvenon

Note that MDX v2 accepts markdown in more places:

<div>*hi*?</div>

<div>
  # hi?
</div>

<main>
  <div>

    # hi?

  </div>
</main>

pomber avatar Oct 25 '21 10:10 pomber