### Check for existing issues - [X] Completed ### Describe the feature Currently, people using Vale on [MDX files](https://mdxjs.com/) tell Vale that it's just Markdown. ```ini [formats] mdx = md ``` But it isn't! MDX has clear differences from Markdown: - Comments are different https://github.com/errata-ai/vale/issues/762 - Vale must ignore lines that are actually JavaScript, i.e. those starting with `import` - Vale must ignore JSX expressions e.g. `{1 +1}` - Vale must not treat HTML as prose, i.e. `<div foo="bar">` should not generate warnings (applies to Markdown also) [Syntax reference](https://mdxjs.com/docs/what-is-mdx/#mdx-syntax)
Check for existing issues
Describe the feature
Currently, people using Vale on MDX files tell Vale that it's just Markdown.
But it isn't! MDX has clear differences from Markdown:
import{1 +1}<div foo="bar">should not generate warnings (applies to Markdown also)Syntax reference