ckeditor / ckeditor5

Powerful rich text editor framework with a modular architecture, modern integrations, and features like collaborative editing.
https://ckeditor.com/ckeditor-5
Other
8.27k stars 3.59k forks source link

Adding <p> element to the list plugin? #16273

Open devraj112 opened 3 weeks ago

devraj112 commented 3 weeks ago

Is it possible to add the <paragraph> model element to list plugin.

As it stands now : The model structure: <listItem>Hello world</listItem> The view structure: <ul><li>Hello world</li></ul>

What my requirement is: Model structure <listItem><paragraph>Hello world</paragraph></listItem> The view structure: <ul><li><p>Hello world</p></li></ul>