prosemirror-math
prosemirror-math copied to clipboard
Schema and plugins for "first-class" math support in ProseMirror!
`prosemirror-math` demo has spellcheck [disabled](https://github.com/benrbray/prosemirror-math/blob/master/docs-src/index.html#L38) for the whole editor, but in real-life cases spell checking is often necessary. But it doesn't make sense to spellcheck raw TeX, therefore this PR...
To reproduce: Press Cursor-Right at the end of a display/block math environment. The following shows up in the browser console: ``` TextSelection endpoint not pointing into a node with inline...
I use a simple plugin like this: ```js const readonlyPlugin = new Plugin({ key: new PluginKey('readonly'), filterTransaction: (transaction) => transaction.docChanged === false, }); ``` to allow ProseMirror to be read-only...
Bumps [rollup](https://github.com/rollup/rollup) from 4.14.1 to 4.22.4. Release notes Sourced from rollup's releases. v4.22.4 4.22.4 2024-09-21 Bug Fixes Fix a vulnerability in generated code that affects IIFE, UMD and CJS bundles...
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 5.2.8 to 5.4.6. Release notes Sourced from vite's releases. [email protected] Please refer to CHANGELOG.md for details. [email protected] Please refer to CHANGELOG.md for details. Changelog Sourced from vite's...
This bug affects all versions of the Firefox browser. [Zotero](https://www.zotero.org/) uses `prosemirror-math` for its note editor and this bug freezes/quits the program. For Firefox browsers, this bug will cause the...
I've cobbled together a solution that seems to do a satisfactory job of allowing pasted Markdown, see this PR to my project: https://github.com/inducer/relate/pull/1148/files It's certainly less broad in scope than...