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

MDX for Visual Studio Code

Results 12 vscode-mdx issues
Sort by recently updated
recently updated
newest added

Make a list of which MDX v2 features don't work in this extension and fix them.

enhancement

If I activate this extension in VS Code the [**Better Comments**](https://marketplace.visualstudio.com/items?itemName=aaron-bond.better-comments) **Extension does not work anymore**.

Two repros: ````jsx ```java class Hi { public static void main(String args[]) { console.log("Hi"); } } ``` ```` ![image](https://user-images.githubusercontent.com/55398995/135869706-f3cf6025-47f2-4f38-85ac-3e5e69125912.png) ````jsx ```bash website//docs ``` # Title ```` ![image](https://user-images.githubusercontent.com/55398995/135869762-2480c53b-ec05-4c4a-8c1a-aed4d960d782.png)

We have a feature in mdx, using which we can write markdown syntax inside the JSX block of code. ``` I want to write **some inline** code here like `npm...

bug

They are treated just like markdown. Lowercasing the jsx element works for syntax highlighting, but then it doesn't function.

bug

Would it be possible to have intellisense for javascript and markdown inside `.mdx` files? It would require custom rules / config probably. I'm not aware how it works though...

enhancement

Hello! I took the liberty of submitting this extension to [Open VSX](https://open-vsx.org/)'s publishing CI (open-vsx/publish-extensions#187), since I was wanting to use it in [VSCodium](https://vscodium.com/). Open VSX is a vendor-neutral open-source...

Normal return statements look fine: ![image](https://user-images.githubusercontent.com/20903247/82763295-ac71fb00-9dd4-11ea-9959-c7cef31ac75d.png) However, implicit return statements are not highlighted: ![image](https://user-images.githubusercontent.com/20903247/82763312-c4e21580-9dd4-11ea-9d32-03f435440663.png) Appreciate your syntax highlighting plugin 😄keep up the good work!

This is inherently tricky because we have to make some sort of a subset, we have to gracefully degrade what we can't display, like imported React components. See [vscode-mdx-preview](https://github.com/xyc/vscode-mdx-preview) for...

enhancement

VSCode recently got a native feature for auto-closing JSX tags. Let's see how to make it work in MDX without the [Auto Close Tag] extension. [Auto Close Tag]: https://marketplace.visualstudio.com/items?itemName=formulahendry.auto-close-tag

bug