zenoamaro / react-quill

A Quill component for React.
https://zenoamaro.github.io/react-quill
MIT License
6.78k stars 923 forks source link

ProKeys formatting does not work with React Quill #996

Open HeenaAnjum opened 3 months ago

HeenaAnjum commented 3 months ago

Prokeys formatting is getting removed.

https://github.com/user-attachments/assets/ace4f85f-9bd3-429a-96ee-4cbb0976e66c

Please help as it is causing customer impact in my project

Thanks for filing an issue!

If at all possible, please provide a Codesandbox or Codepen to demonstrate the problem you're having with React Quill. Here's a [template] to get you started.

⚠️ Make sure that your bug hasn't already been fixed by ReactQuill v2.0.0-beta.2. See the homepage for instructions on how to upgrade.

[template]: https://codesandbox.io/s/react-quill-template-u9c9c

Ticket due diligence

ReactQuill version

FAQ

Is this a bug in Quill or ReactQuill?

ReactQuill is just a ~thin~ wrapper on top of the Quill editor. Often, what looks like a bug in ReactQuill, is actually a bug in the Quill editor itself. Before opening a ticket, please check the [Quill documentation], and the [issues page], and see if that answers your question first.

[Quill documentation]: https://quilljs.com/docs

[issues page]: https://github.com/quilljs/quill/issues

How do I access the wrapped Quill instance?

See the [instance methods] and [API] documentation.

[instance methods]: https://github.com/zenoamaro/react-quill#methods

[API]: https://github.com/zenoamaro/react-quill#api-reference

HeenaAnjum commented 3 months ago

I have tried :

  1. clipboard: { matchVisual: false } // disable pre formatting
  2. autoformatting:false
  3. value={
    {editorContent}
    }
  4. quill.removeFormat(3, 7);

Using React version "react-quill": "2.0.0-beta.2"