We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If you want to ask for support or request features, sponsor the project and contact me over email.
Describe the bug
After setting allowedHeadingLevels [1,2], but ### + spacebar shortcut makes h3 tag. also h4, h5, h6.
### + spacebar
export default function InitializedMDXEditor({ editorRef, ...props }: { editorRef: ForwardedRef<MDXEditorMethods> | null } & MDXEditorProps) { return ( <MDXEditor plugins={[ headingsPlugin({ allowedHeadingLevels: [1, 2], }), markdownShortcutPlugin(), ]} {...props} ref={editorRef} /> ); }
Reproduction Start from https://codesandbox.io/p/sandbox/mdx-editor-base-q8s7zr?file=/src/App.tsx to reproduce the problem so that I can observe the issue on my side and make sure that the fix reliably addresses it.
To Reproduce Steps to reproduce the behavior:
Expected behavior
I set allowedHeadingLevels = [1,2] but ### or #### or ##### or ###### still working.
Screenshots If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered:
Agreed. One more point towards moving the markdown shortcuts from lexical into the mdxeditor code. Misfortunate.
Sorry, something went wrong.
No branches or pull requests
If you want to ask for support or request features, sponsor the project and contact me over email.
Describe the bug
After setting allowedHeadingLevels [1,2], but
### + spacebar
shortcut makes h3 tag. also h4, h5, h6.Reproduction
Start from https://codesandbox.io/p/sandbox/mdx-editor-base-q8s7zr?file=/src/App.tsx to reproduce the problem so that I can observe the issue on my side and make sure that the fix reliably addresses it.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
I set allowedHeadingLevels = [1,2] but ### or #### or ##### or ###### still working.
Screenshots
If applicable, add screenshots to help explain your problem.
Screen.Recording.2024-07-28.at.4.21.02.PM.mov
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered: