-
-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Parsing Errors: Unterminated JSX contents when using details element #207
Comments
That PR has been closed. And code block is intended to be ignored because they're not source code but something like string literal. But if you want to lint code blocks, maybe you can try eslint-plugin-markdown. |
@JounQin it seems that both plugins are incompatible. I've tried to setup both with this config: // .eslintrc.js
const markdownRecommended = require('eslint-plugin-markdown').configs.recommended;
module.exports = {
root: true,
env: {
browser: true,
node: true,
},
extends: [
'eslint:recommended',
'plugin:react/recommended',
],
overrides: [
{
files: ['*.mdx'],
extends: ['plugin:mdx/recommended'],
plugins: ['markdown'],
processor: 'markdown/markdown',
parserOptions: markdownRecommended.overrides[0].parserOptions,
rules: markdownRecommended.overrides[0].rules,
},
],
}; However, only errors coming from Is there anything I'm missing? |
Let me know if you want me to create a new issue. |
@satazor Sorry markdown And I tried to fix part of this issue in #273. What means the following will be able to be parsed. <details><summary >Override element states</summary>
The previous code sample show how to specify a custom color for a `naked` button by using a `style` attribute. It works great to provide a basic property like a `background-color`. What about [element states](https://developer.mozilla.org/en-US/docs/Web/CSS/Pseudo-classes) though? You can't specify an hover state with a `style` attribute.
Here's another technique to specify a custom color by using a few CSS classes and a [CSS variable](https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties). This technique leverage the ability to override a CSS variable of a stylesheet from the `style` attribute.
In the following example a React component render a button with a custom color `background-color` and a darker hover state by overriding the `--color` CSS variable from the `style` prop.
</details> |
…g - close #272 (#273) * feat: bump (dev)Dependencies, fix related errors * fix: consider first jsx node as open tag - close #272 the parsed remark-mdx jsx nodes are not precise, but it will be resolved in v2 * chore: lerna config changes * test: do not use user environment related test cases * fix: open close tag regex, push remaining nodes * fix: part of #207, markdown in jsx is still not supported improve fixtures test case * test: remove unnecessary fixture * docs: add comments for // @ts-ignore and never
Subject of the issue
In VSCode, when using a details element I get the following error: "Parsing Errors: Unterminated JSX contents".
I am pretty sure this is because of this plugin since it goes away if I remove the plugin from my ESLint config (bug then I have other errors ;)).
Here's my ESLint config:
All the tags are closed. I try to paste the code but it doesn't format well becaise it contains markdown.
The file is available here: https://github.com/gsoft-inc/sg-orbit/blob/master/packages/react-components/src/button/stories/custom-color-hover.mdx
Thank you for your help,
Patrick
Your environment
Windows 10
"eslint": "7.1.0",
"eslint-plugin-mdx": "1.7.0"
node v13.11.0
yarn v1.22.4
Steps to reproduce
Tell us how to reproduce this issue. Please provide a working and simplified example.
🎉 BONUS POINTS for creating a minimal reproduction and uploading it to GitHub. This will get you the fastest support. 🎉
Expected behaviour
No error when using
<details><summary>
Actual behaviour
What happens instead?
A Parsing Error
The text was updated successfully, but these errors were encountered: