Open
Description
Initial checklist
- I read the support docs
- I read the contributing guide
- I agree to follow the code of conduct
- I searched issues and couldn’t find anything (or linked relevant results below)
Problem
vscode-remark only recognizes markdown files
vscode-remark/src/extension.js
Line 17 in a6b066c
but there is now a dedicated MDX language in VS Code. it would be awesome if we could use remark lint on our MDX files!
Solution
Update the documentSelector to include MDX files
Alternatives
You can force VS Code to treat MDX as Markdown, which allows vscode-remark to work, but it comes at the cost of all the other language features of MDX in VS Code via vscode-mdx
"files.associations": {
"*.mdx": "markdown",
},