-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
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
Document lists should have a “simple list” config option #14634
Comments
Refinement notes:
|
Should we deny multiple types of nested lists in a single list item? Shall simple list allow such structure or should it not (in legacy lists it was not possible): <ul>
<li>
a
<ol>
<li>
b
</li>
</ol>
<ul>
<li>
c
</li>
</ul>
</li>
</ul> |
I don't see a reason why not. I see it as a good enhancement for the user that they can have a bulleted list and inside it have a numbered one. It still matches my definition of simple. @Reinmar do you remember why Lists v1 didn't have it? Or was it only scope cutting? |
Feature (list): Allow restricting list item content to single text block by `list.multiBlock` config option. Closes #14634.
As we decided to make the Document list the only plugin that introduces the lists, we need to add a config option that still allows creating simple lists.
Why?
Integrators may want to allow simpler content editing, and block creation of blocks in the lists. We have a similar use case in our comments' system. You rarely may want to have a complex markup in small editors. etc.
Scope
<ul><li>a</li><li>b</li></ul>
(forol
as well).The text was updated successfully, but these errors were encountered: