Problem/Motivation
We "solved" the problem of supporting <ol type> and <ul type> by using the SourceEditing functionality for that.
But in CKEditor 5 32.0.0, they've added a native UX for setting the list type:

Which means that rather than having to edit HTML by hand, the content creator can now do that through the UI! But unfortunately, it currently always generates <ol style="list-style-type:SOMETHING"> and <ul style="list-style-type:SOMETHING">, so we cannot use this.
This is blocked on https://github.com/ckeditor/ckeditor5/issues/11615. This is blocked on https://github.com/ckeditor/ckeditor5/issues/14613 per #20 (thanks @s_leu!).
It'd also improve the upgrade path from CKEditor 4 because these attributes would no longer have to get set through the SourceEditing functionality.
Steps to reproduce
N/A
Proposed resolution
See above.
https://git.drupalcode.org/project/drupal/-/merge_requests/11100
Remaining tasks
- ✅
Setstyles.useAttribute = trueper https://github.com/ckeditor/ckeditor5/issues/11615, this ensures thetypeattribute will be generated instead of astyleattribute - ✅
Add configuration to\Drupal\ckeditor5\Plugin\CKEditor5Plugin\ListPlugin::buildConfigurationForm(), to allow enabling thetypeattribute or not - ✅
Expand the config schema underckeditor5.plugin.ckeditor5_listinckeditor5.schema.yml - ✅
Expand unit test coverage in\Drupal\Tests\ckeditor5\Unit\ListPluginTest - ✅
Update path (+ tests) to automatically enable this if and only if they were previously allowing<ol type>or<ul type>to be set Optional: add more configuration to→ CKEditor 5 does not yet support restricting this to specific types.\Drupal\ckeditor5\Plugin\CKEditor5Plugin\ListPlugin::buildConfigurationForm(), to allow configuring which listtypeattribute values are allowed. (e.g.type="A"for<ol>ortype="circle"for<ul>).
User interface changes
Extra configuration in UI:

API changes
None.
Data model changes
None.
Release notes snippet
Previously, setting <ol type> or <ul type> required manually writing HTML in CKEditor 5's "Source Editing" view. Now, the native UI functionality is available to set list style types for ordered lists (letters and Roman numerals instead of only numbers) and unordered lists (circles and squares instead of only discs).
| Comment | File | Size | Author |
|---|---|---|---|
| #183 | SCR-20251217-ksbv.png | 135.47 KB | ruslan piskarov |
| #135 | Before.png | 48.14 KB | roshanibhangale |
| #135 | After recording.mkv | 6.77 MB | roshanibhangale |
| #143 | 3274635-mr5079-94fde602-10.4.x-updated-editorStyleFixCondition--121.patch | 96.23 KB | pascuperbla |
| #150 | 3274635-mr11100-11.2.x--150.patch | 87.23 KB | isampo |
Issue fork drupal-3274635
Show commands
Start within a Git clone of the project using the version control instructions.
Or, if you do not have SSH keys set up on git.drupalcode.org:
- 3274635-add-missing-update-path-if-using-CKE5-list-plugin-only
changes, plain diff MR !14034
- 3274635-upstream-use-ckeditor-11.x
changes, plain diff MR !11100
- 3274635-upstream-use-ckeditor-11.x-2
changes, plain diff MR !11915
- 3274635-upstream-use-ckeditor
changes, plain diff MR !5079
Comments
Comment #2
wim leersThis is also blocked on #3274648: HTMLRestrictions::merge() and ::toGeneralHtmlSupportConfig() fail on allowed attribute values that can be interpreted as integers getting fixed.
Comment #3
wim leersSee #3274651-7: Impossible to enable <ol type> or <ul type> with GHS: switch to List's successor, DocumentList — while the UX was inferior in CKEditor 4 (only supported via
Sourcemode), it definitely was possible. Which is why it's unfortunate that we cannot use the wonderful UX that you can see in the issue summary just yet… 😬😔Comment #4
wim leers#3274651: Impossible to enable <ol type> or <ul type> with GHS: switch to List's successor, DocumentList is now moving forward … exciting!
Comment #5
wim leersYay, progress at https://github.com/ckeditor/ckeditor5/issues/11615#issuecomment-1110770696 — this means that we'll be able to offer that native UI for
<ul type>and<ol type>in the future!Comment #6
wim leersLooks like the PR that adds support for this (https://github.com/ckeditor/ckeditor5/pull/11699) landed 2 hours ago: https://github.com/ckeditor/ckeditor5/commit/a6c677fa403ad0f907bab5c56a0...
That means this is now postponed on #3277438: Update to CKEditor 5 v34.1.0 too. 👍
Comment #7
wim leers#3277438: Update to CKEditor 5 v34.1.0 is in, one fewer blocker 👍
Comment #8
wim leersTo clarify: the remaining blocker here is #3274648: HTMLRestrictions::merge() and ::toGeneralHtmlSupportConfig() fail on allowed attribute values that can be interpreted as integers.
Comment #9
wim leers#3274648: HTMLRestrictions::merge() and ::toGeneralHtmlSupportConfig() fail on allowed attribute values that can be interpreted as integers is done!
Comment #10
wim leersUpdated issue summary with remaining tasks.
#3261599: Use CKEditor 5's native <ol start> support (and also support <ol reversed>) already added configuration for the
ckeditor5_listplugin. We can extend it here 👍Comment #11
wim leers10.0.xis out. We can totally do this now in10.1.x🤓Comment #12
joaopauloc.dev commentedComment #13
joaopauloc.dev commentedHello, I spend some time working here but I couldn't finish because I found some issues that I couldn't fix.
The form was updated adding the new style option.
The list plugin also was updated to return the new attributes when the style is selected.
Also, the property style is already returning the use attribute as true.
The result of these changes we can see in the gif attached.
The UI with the type list is working and the user can choose the type of list.
The elements ul and ol is working with the type attribute, so when the style is checked on the admin area the elements do not use list-style-type and use the type attribute.
The issue that I couldn't fix is on the CKEditor UI that didn't change when we select another type of list, if we save or click on the source code is correct, the type attribute was correctly added, but in the UI of CKEditor, nothing changes. Also if we save the value when the node is rendered the ul or ol is displayed correctly with the attribute type.
So, if anyone wants to start from my patch is attached here, and will try to fix it in the next few days
Comment #14
metasimSo I applied the above patch on D10.1.x-dev to figure out the what might be causing the problem stated by @joaopauloc.dev,
What I found:
For OL:
For UL:
For Styling:
.ck-content olwhich was applying through the style tagolwhich was coming through a css file from /sites/default/files/cssI am attaching a screen recording of everything I have found and tried out, hopefully it helps!
Comment #16
yovincethanks @@joaopauloc.dev,
We are decoupled system, so your patch helped us! However, it still displays the incorrect style for the Drupal view and edit view.
Comment #17
wim leersI'd love to see this land in
10.2.x.@joaopauloc.dev ~5 months have passed since #13, and Drupal 10.1.x is now using a newer major version of CKEditor 5 — could you please re-test? 🙏😊
Comment #18
joaopauloc.dev commentedI'll check that.
Comment #19
s_leu commentedI also checked the patch from #13 recently and did so again today with the latest commit of 10.1.x . Unfortunately the problems that metaism outlined in #14 persist and some styles make the application of a list type via the type attribute on
<ol>and<ul>fail as they override that style set by the attribute.As metaism describes, one of these styles is in a
<style>tag which is actually shipped with ckeditor, see here: https://github.com/ckeditor/ckeditor5/blob/master/packages/ckeditor5-list/theme/list.css . The other mentioned style is located in core/themes/claro/css/base/elements.css (vanilla Drupal install).The former is particularly interesting as it suggests that ckeditor5 isn't really fully supporting the type attribute due to these styles shipped and applied unconditionally by ckeditor5's list plugin. Looking at the demo page for lists, the type attribute is not used there either: https://ckeditor.com/docs/ckeditor5/latest/features/lists/document-lists.html . I could be missing something here, but it seems like that's a fix that needs to be done in ckeditor5, at least partially. The style in elements.css can be done here of course.
Comment #20
s_leu commentedI investigated some more on this and tried if I can replicate the issue in a plain html page initializing a CKEditor5 instance to verify that this is a ckeditor5 problem and it turns out that the feature is indeed broken inside ckeditor itself. I filed an issue on github outlining the details: https://github.com/ckeditor/ckeditor5/issues/14613
Comment #21
s_leu commentedAdding a separate patch that will remove some styles from core themes which are actually unnecessary as they are just the same as browser defaults but are preventing the styling using the list's type attributes in this case here.
Comment #22
s_leu commentedIt's probably worth to mention that there's a working implementation of this inside a contrib module patch (MR) over at https://www.drupal.org/project/ckeditor_liststyle/issues/3326957 . That MR's patch + the patch in the previous comment here together will make those list style types available in Drupal until the ckeditor issues are sorted out and core updated to the release that sorted them out.
Comment #23
joaopauloc.dev commentedComment #24
wim leersThanks for your thorough research, @s_leu! 🤩🙏 Updated issue status accordingly.
Comment #25
osmanHi, I'm the owner/maintainer of previously mentioned CKEditor List Style module. Sorry for joining this party at a later stage.
I am very much looking forward to move this functionality to the core. And it is almost there. :)
Please find the attached re-roll of the patch with some CSS additions, and try it on a Firefox browser.
Here is why: https://caniuse.com/mdn-css_selectors_attribute_case_sensitive_modifier
And at this point I also would like to ask why we insist using the type attribute for the OL and UL elements?
Currently at least, the CKEditor uses following type attribute values for all available list styles:
However, the ordered-lists are having a problem with these assignments, at least in my experience.
The values are the same, just lower and upper cases, however, by default, the CSS attribute selectors are case-insensitive.
See https://developer.mozilla.org/en-US/docs/Web/CSS/Attribute_selectors
I didn't find any discussions around this in drupal.org, i hope I'm not spamming this thread with this : )
Comment #26
osmanSorry, the patch in previous comment was against 10.x branch.
This is now against 11.x branch.
Comment #28
bnjmnmComment #30
bnjmnmMR has a solution that works around https://github.com/ckeditor/ckeditor5/issues/14613
I assume some tests will fail since the plugin added an option, but that's easy enough to address. I wanted to get this goofy workaround up asap so this could officially be un-postponed.
Comment #31
bnjmnmWorkaround implemented and tests added.
Comment #32
wim leersThat works great! (Which is proven by the additional functional JS test coverage you added 👏)
Unfortunately, there are some genuine failures:
… except that those are literally for the test cases that were only necessary for now, because
<ol type>and<ul type>were only supported today through the Source Editing UX (aka by typing HTML manually), not through the UI! 🤩🥳 These tests were added explicitly in #3274651: Impossible to enable <ol type> or <ul type> with GHS: switch to List's successor, DocumentList and are now obsolete.The correct solution is to:
<ol type>and<ul type>from the Source Editing plugin's configuration, and moves it to the List plugin's configurationComment #33
wim leersDone:
It should now be reviewable 👍
I only wrote the update path + update path tests + revised unit tests. @bnjmnm did the hard work. IMHO @bnjmnm can RTBC my part, and I can RTBC his part.
But unfortunately, this will not be able to land for now, because I was forced to add a work-around for #3396628: Fix <ol start> → native CKEditor 5 functionality and fix bug in SourceEditingRedundantTagsConstraintValidator that allowed it to slip by. 😬 Keeping at though, because other than that one line in that one commit (https://git.drupalcode.org/project/drupal/-/merge_requests/5079/diffs?co...) that is out of scope, this is totally reviewable.
Comment #34
smustgrave commentedSeems upgrade path is there. But test failures seem legit.
Comment #35
wim leersComment #36
wim leersComment #37
wim leersJust realized something:
\Drupal\ckeditor5\Plugin\CKEditor4To5Upgrade\Core::computeCKEditor5PluginSubsetConfiguration()'scase 'ckeditor5_list':should also be updated.Comment #38
wim leersThat was easy 😊
Comment #39
smustgrave commentedDo think this is ready to go but till [#3396628 am postponing it. But that issue is RTBC so hopefully lands very soon and this could be marked RTBC right after.
Comment #40
wim leersWonderful, thank you!
I do think this would merit being in the release highlights, if it still makes it 😇
Comment #41
wim leers#3393557: [upstream] Update CKEditor 5 to 40.0.0 landed, this will need a rebase.
Comment #42
jweowu commentedThe patches in this comment are for Drupal 10.1.x, but I can only presume the issue I discuss below applies equally to 11.x.
* Patch 'a' is a re-roll of the (11.x) MR from commit ea2a4f1a1368ec4347419e87fd43ebeb3764a219 against 10.1.x.
* Patch 'b' is a modified version of the same (see below)
The interdiff is between the two. The modifications are removing all cases of:
ul:not([type]) { list-style-type: disc; } ol:not([type]) { list-style-type: decimal; }Those cause problems but I believe also shouldn't be necessary. User agents should be defaulting to those same styles when a list has no
typeattribute and nolist-style-typestyle; so setting them explicitly should be a no-op at best.At worst, the
:not([type])makes these selectors more specific than plainulandoland therefore pre-existing styles for the less-specific selector get overridden. This is bad when, say, a list was previously being styled to have a list style ofnoneand winds up withdiscinstead because it didn't have atypeattribute in the markup. Using Claro as my admin theme, I was observing that issue in practice in, for instance, the Operations drop-down menus atadmin/content.Comment #43
joshf commented#42b did not seem to fix the problem in our case. We went with this as a temporary workaround:
...and so on down through the list hierarchy.
Comment #44
jweowu commentedThat's certainly the other option. I was hoping it wouldn't be needed, but there must be something else styling
list-style-typefor those list items in your case, meaning that you then need to override it. I guess it's going to be safest to assume that will be the case, even if it's not true for everyone.Comment #45
mstrelan commentedIn some cases it might be preferable to only allow the list style on ordered lists, but not unordered lists. With this patch there is no option to enable these separately.
Comment #46
wim leers#3396628: Fix <ol start> → native CKEditor 5 functionality and fix bug in SourceEditingRedundantTagsConstraintValidator that allowed it to slip by landed, this is unblocked.
Comment #47
wim leersThis conflicted with both #3396628: Fix <ol start> → native CKEditor 5 functionality and fix bug in SourceEditingRedundantTagsConstraintValidator that allowed it to slip by and #3393557: [upstream] Update CKEditor 5 to 40.0.0 — that was quite the unraveling 😅
Comment #48
wim leers@mstrelan I know. I agree. But that seems even more edge-casey. If we require that, we'd have to wait for yet another upstream feature. I think this is a net improvement for the majority?
Comment #49
smustgrave commentedHaven't retested but appears to have test failures.
Comment #50
mstrelan commentedRe #48 I didn't realise that was upstream, so I agree we should leave that for now. In our case the editors have asked for numbering options only. I'm sure we can get away with giving them unordered list style options too, but our stylesheet displays them all the same anyway, so we'll probably end up with a bug report.
Comment #51
bkosborneSame here RE: the desire to only allow style options for ordered lists. Is there an existing upstream issue for this? I can make my case for it there if so
Comment #52
jweowu commentedNeeds Work on account of #42 as well -- it's not safe for the stylesheet to use
:not([type]).Comment #53
mstrelan commented#42 patch b works well on a clean install with Claro and Olivero. I think we should update the MR accordingly, and the approach in #43 should be left to individual themes to decide if they need.
Comment #54
gábor hojtsyUntagging from release highlights as this did nto make it into 10.2. Would be great in 10.3 highlights once it lands though :)
Comment #55
acbramley commentedHaving issues with this patch while upgrading to 10.2.
We already had the latest MR changes applied as a patch to 10.1.7 and list styles were working well. After upgrading to 10.2.0 and running db updates it set
plugins.ckeditor5_list.properties.stylesto falseManually going through the UI to edit the editor/filter config, I had to remove a large amount of tags from sourceEditing (probably unrelated) until it would let me save.
When it finally let me save, I tried multiple times to check "Allow the user to choose a list style type", wait for the AJAX request to finish, then save the form. After each save, I'd return to the edit form and the checkbox would be unticked.
Debugging into ListPlugin::submitConfigurationForm I can see the config is set to TRUE so I'm not sure what's going wrong here.
In both 10.1 and 10.2 config I have
<ol class="ol--counters" type reversed start>in Allowed HTML tags, and do NOT have<ol type>in the allowed source editing tags.EDIT: This worked - manually editing the properties.styles to TRUE AND adding
<ol type>and<ul type>to the sourceEditing allowed tags.Comment #56
wim leers@Gábor Hojtsy in #54: thanks — and sorry 🙈
@acbramley in #55: That sounds related to the #3410380: Several elements are missing from ckeditor5 Basic HTML/#3410364: Change to edit source error handling in 10.2 leads required changes to configuration that cause data loss on edit/#3410100: [10.2 regression] CKEditor 5 breaks when "Source"/Source editing button is added and "Manually editable HTML tags" are specified triple duplicate reports in the past day. I'll try to get that sorted out later today.
Should we block this on https://github.com/ckeditor/ckeditor5/issues/15554? Per #50 and #51, we will probably have to do that.
Comment #57
wim leersCalling it. 😞
Please give a 👍 to https://github.com/ckeditor/ckeditor5/issues/15554 🙏
Comment #58
charles belovI'd prefer not to see https://github.com/ckeditor/ckeditor5/issues/15554 as a blocker to the current issue as it seems to be a separate issue. While waiting for that issue, a developer could use display:none to not render the drop down for unordered lists in the WYSIWYG, no?
Comment #59
acbramley commented@Wim Leers re #56 - that may be related but sounds quite different. Sorry if I confused things in my comment by over explaining haha.
The main issue I'm seeing is that saving a text format is not respecting the styles or source editing settings that relate to this particular issue.
I.e, I save the text format without changing anything and export config and that results in this diff:
The only way I can keep the list styles enabled is manually editing the format yaml and importing.
Comment #60
aaronpinero commented@acbramley I wanted to make sure I understand what you were reporting in #55 and #59. This is important to me because this issue is blocking the upgrade of my Drupal websites to 10.2. I am not going to tell my content editors that I now have to take away what is really a basic, essential feature of the content editor.
It sounds like you were saying that, following the upgrade to Drupal 10.2, I will need to:
- re-save my text format configurations
- export the website configuration to xml
- manually update the editor.editor.x.yml files to set the list properties.styles to true and add
<ol type>and<ul type>to the allowed tags- import the configuration
It also sounds like I will need to repeat this process if, in the future, I need to change my text format configurations for some other reason besides list styles. Is that correct? Are there any other steps that are necessary to get this to work? Is there a new patch I need to apply or are these steps sufficient without a patch? Thanks for working through this.
---------
I very much hope some of this can be resolved via patch before 10.3. This is really basic functionality for the editor that should never have been missing in the initial release of 10.0. More than a year later, it would be nice to see this finally cleaned up.
Comment #62
gwvoigtDirectly accessing the 'styles' index in $this->getConfiguration()['properties']['styles'] (in ListPlugin.php) was throwing me warnings when editing nodes, so I'm using isset() to check if the index exists before accessing it.
Comment #63
acbramley commented@aaronpinero yes, except now I'm seeing for some reason that I don't need to keep the tags in ckeditor5_sourceEditing - our config export kept forcing the removal of those (but it would keep styles: true) even without editing the filter format. I ended up testing the list styles feature without those allowed tags and it works just fine.
So all you need to do is:
1. Save your filter format
2. Maunally edit the editor yaml file and set
settings.plugins.ckeditor5_list.properties.stylestotrue3. Import the config again.
If you edit the filter format again you will indeed need to make sure to revert the
styles: falsechangeComment #66
taran2lThis is indeed a nice feature - I think it can be shipped as is (i.e. without control over specifics for UL/OL). Maybe consider unpostponing it?
Comment #67
taran2lMR is important, hid everything else
Comment #68
acbramley commented#63 is now fixed with the latest MR changes - thanks @Taran2L!
The MR is green too, should we consider unpostponing?
Comment #69
taran2lhi @acbramley, we had a discussion with @Wim Leers the other day in Slack: https://drupal.slack.com/archives/C1BMUQ9U6/p1708010000803059
So, probably this is no go for now. Don't know
My response is that: this fix is a direct upgrade path from https://www.drupal.org/project/ckeditor_liststyle
Comment #70
jweowu commentedI don't understand the argument that making this an option is currently problematic.
Sure, in its current state such an option would mean "enabled for both ul and ol" or "disabled for both ul and ol", and some users might want only one or the other. But at the moment those users don't have any way to do that, so they'll be no worse off. Meanwhile the other users who want it enabled for both ul and ol also don't have any way to do that, and their requirement could be fulfilled. (And I'm struggling to imagine that the latter would not be the majority.)
This would in no way preclude a more granular config down the track, and in the interim it would resolve the issue for lots of people.
Comment #71
neclimdulDo we need to hang this on a ckeditor feature with an indeterminate timeline? Seems like we could provide this as a feature with the caveat and support the new feature after ckeditor supports. That would provide some immediate functionality for people that can use it as is but also highlight the feature request to more users.
With that in mind though, we should probably default this off and make sure administrators opt in and understand what they're opting in to.
A quick test of the merge request, this seems to work pretty well as a user. Very nice!
Comment #72
acbramley commentedTotally agree with #70 and #71 - why not commit as is and open a follow up to track upstream to allow enabling only one or the other?
Comment #73
ericgsmith commentedI believe the issue is that currently users may have
<ul type>enabled in source editing, but not<ol type>With the introduction of this plugin you would not be able to do that - if you left the plugin option disabled and tried to add
<ul type>to the source editing you would get this validation error:I agree we shouldn't need to wait for CKEditor to proceed with this, but I do think this scenario is another use case for reverting the validation of optional attributes that requires you to use the plugin #3410100: [10.2 regression] CKEditor 5 breaks when "Source"/Source editing button is added and "Manually editable HTML tags" are specified - that way the editor would be free to keep using source editing for support type on only 1 of the elements, and users who want both get the benefit of this awesome work.
Comment #74
bkosborneYes, I think #74 summarizes this nicely. Unless #3410100: [10.2 regression] CKEditor 5 breaks when "Source"/Source editing button is added and "Manually editable HTML tags" are specified is resolved, I think this needs to be blocked on the upstream issue. So the fastest way to get this resolved is to show your support in the upstream issue by adding a thumbs up.
Comment #75
saurabh rawat commentedI believe it should not be postponed as list style is not the part of source editing and it is important feature which was working till 10.1.5 along with ckeditor 5 and all the patches are either considering 10.1.x or 11.x but nothing seems to be working in 10.2.x version.
Comment #76
saurabh rawat commentedComment #77
saurabh rawat commentedFix for Drupal 10.2.x
Comment #78
saurabh rawat commentedComment #79
needs-review-queue-bot commentedThe Needs Review Queue Bot tested this issue. It fails the Drupal core commit checks. Therefore, this issue status is now "Needs work".
This does not mean that the patch necessarily needs to be re-rolled or the MR rebased. Read the Issue Summary, the issue tags and the latest discussion here to determine what needs to be done.
Consult the Drupal Contributor Guide to find step-by-step guides for working with issues.
Comment #80
saurabh rawat commentedPHPCS Fixes
Comment #81
taran2l@saurabh rawat, please stop producing patches, and use MR, thanks
Comment #82
smustgrave commentedHiding patches but MR needs a rebase.
Comment #83
ericgsmith commentedComment #84
berliner commentedI personally appreciate the patch files from saurabh rawat to have something usable in D10.2.
Comment #85
aaronpinero commentedI also appreciate having a patch available. I tested the patch in #77 and it worked for me in Drupal 10.2.4. I understand the desire to have folks follow the current practice of using a merge request, but it is also convenient to have the patch. I think we can encourage the following of desired practice without discouraging helpful contributions.
Comment #86
mstrelan commentedTried to rebase for 11.x but it has diverged too far and I got lost. Ended up rerolling for 10.3.x for use on a client project. This is from MR 5079 commit 94fde602. Attaching patch for others to use but setting it to hidden so as not to derail the issue.
I also don't understand why this is blocked, I doubt it's all that common to want to allow
<ul type>but not<ol type>.Comment #87
taran2l@berliner @aaronpinero creating a static patch from the MR is ok-ish, but continue working on the issue in patch mode - not
Comment #88
berliner commented@Taran2L No disagreement then :)
Comment #89
piotr pakulskiGuys tested patch #80 for 10.2.5 and 10.2.6 - I can see the other types of lists but when selected the list stays numerical as usual. Anyone experiencing the same?
Comment #90
subir_ghosh[Subscribing]
Comment #91
chrisla commentedPatch from 80 is working for me in the editor and saving content, but produces an error message on editing page where CKEditor appears:
Simply adding an
isset()to that line fixes the error message for me.Comment #92
chrisla commentedNew patch based on #80 with isset() added to stop error warning.
Comment #93
chrisla commentedWhen configuring a text_format using patch from #80, I was getting this error:
Same as in #91, this is fixed by adding an
isset()New patch added with this fix
Comment #94
someshver commentedThe #93 patch is functioning perfectly on the frontend, but we are still not seeing the list changes in the CKEditor 5 backend field. (Sorry, it was the issue with the Seven theme)
Comment #95
steveoriolThe patches aren't applying for me on D10.3.0.
Comment #96
loopy1492 commentedYeah. This seems to be working for us better than https://www.drupal.org/project/ckeditor_liststyle/issues/3326957 which is throwing major errors right now.
However, this plugin seems to be only displaying the default list style in the wysiwyg, but is displaying it after publishing. (see screenshots)
Also please note, out of an interest for security, we will not ever use the Merge Request for our patching on our sites unless absolutely necessary.
Comment #97
loopy1492 commentedComment #98
loopy1492 commentedI think these are the salient parts of the code where the style resides. This might be an relatively easy fix but I am just swamped right now.
EDIT: Ah, I see. The css has been changed for extant core themes, but we'll have to adjust them for contrib admin themes. We're using a custom subtheme based on Adminimal/Seven
I was able to apply the patch here to get it working: https://www.drupal.org/project/seven/issues/3436941
Comment #99
loopy1492 commentedI spoke too soon. That worked when I refreshed the page, but then after clearing some caches, it seems that ckeditor injected more styles into the page. I thought it was from a ckeditor js but I don't think so now. I am continuing the search for where this css is being injected from.
I'm fairly certain it's injected with this:
/docroot/core/assets/vendor/ckeditor5/list/list.js
Comment #100
loopy1492 commentedComment #101
loopy1492 commentedSo, just to rule out an admin theme issue, I switched to Claro for my admin theme and this still seems to be happening.
The list.js is being injected making it impossible to re-style the list items because css is case-sensitive and ol[type="A"] is the same to css as ol[type="a"] and ol[type="I"] is the same as ol[type="i"].
The only thing I can think to do at this point is write some asynchronous javascript to find the css when it appears and remove it from the page.
Makes me wonder, however, if ckeditor are just doing this on purpose anyways.
Comment #102
loopy1492 commentedI put this in my theme and it works. It's kind of terrrible, but it works. It lags pretty badly when the editor page opens or when you expand a paragraph that has a wysiwyg in it.
I think it might be better to either have our own list.js like https://www.drupal.org/project/ckeditor_liststyle/issues/3326957 does or contribute to ckeditor 5 directly.
Or include this library which works over on the liststyle module as well. I haven't looked at it in detail, but think the code in this library is what eliminates the forced ckeditor styles.
"ckeditor/liststyle": "4.16.2",Comment #103
someshver commentedI have modified the patch to be compatible with version 10.3.1.
Comment #104
pyrello commentedThe new best practice workflow for this is to do all issue work in merge requests and then to create/download a patch file from the MR and include it as part of your project repo rather than posting it in an issue comment. There are no security concerns with this approach.
Comment #105
loopy1492 commentedAh, I see. So, drupal.org just wants us to stop linking to patch files on thier site?
Comment #106
wrd-oaitsd commentedPatch #103 works beautifully for me. I'm reluctant to add it to a production site until it's officially merged into core, but I look forward to the change.
Comment #107
mstrelan commentedThe upstream MR was merged yesterday so hopefully a new release shortly.
Comment #108
ershov.andrey commentedUpdate patch to be compatible with 10.3.2
Comment #109
ericgsmith commentedHiding patches - please note at #80 onwards the patch appears to have introduced changes from another issue. This has diverted from the MR and and I do not see a reason that these would be intentional changes.
I have updated the patch from #86 as it was no longer applying to 10.3.2 - hiding so not to derail further.
I have not reviewed the additional commits to the MR.
I am also not sure if any of the changes in subsequent patches based on 80 are included or relevant to the MR given they have diverged.
*Edit* - for clarity - this patch is only for capturing a previous known state of the MR for other people that were using the patch in #86
Comment #110
someshver commented#108 is working fine but #109 is giving this warning
Comment #111
zauravEdit on Drupal v10.2.6 and the patch on #93 is working for me - https://www.drupal.org/files/issues/2024-06-13/3274635--ckeditor_list_st...
Using the MR plaindiff (https://git.drupalcode.org/project/drupal/-/merge_requests/5079.diff) to patch and the lists show up but when on the node edit page I get a
Warning: Undefined array key "styles" in Drupal\ckeditor5\Plugin\CKEditor5Plugin\ListPlugin->getDynamicPluginConfig() (line 99 of core/modules/ckeditor5/src/Plugin/CKEditor5Plugin/ListPlugin.php).as well!
Comment #112
boulaffasae commentedFor anyone running into the prb
Warning: Undefined array key "styles" in Drupal\ckeditor5\Plugin\CKEditor5Plugin\ListPlugin->getDynamicPluginConfig() (line 99 of core/modules/ckeditor5/src/Plugin/CKEditor5Plugin/ListPlugin.php).Just loop on each of your CKEditor format Basic HTML, ... and click Save to trigger an update to your configuration
styles: trueshould be added to every settings.plugins.ckeditor5_list.propertiesI'm sure that can be done using the Update hook, I will check it another time
Comment #113
basavarajhavaler commentedWhen I apply the patch with Drupal 10.2.6, I could see patch applied successfully. but wysiwyg is not loading for editors.
I could see console errors. app.js
Comment #114
isampo commentedThe patch on #109 seems to be working and applies well, on both 10.3.12-dev and 10.4.2-dev.
The
Drupal.behaviors.editorStyleFixkludge does have an issue whenever the CKEditor styles aren't loaded into the page during the intial page load. For example a content type which has CKEditor(s) that are only AJAX-loaded inside collapsed Paragraphs, won't get the style fix. Removing theif (context.querySelector('style[data-cke]'))condition inside the behavior does seem to make the behavior trigger on AJAX-loaded editors as well. I guess this is a bit less performant this way, but anyways only the CKEditor-related sheets should be altered as the JS filter() has thehasAttribute('data-cke')in it.Anyhow, attached is a patch based on #109, only change being the removal of the aforementioned condition, making the list-styles work on AJAX-loaded editors as well.
Comment #115
timmerk commented#114 works great on Drupal 10.3.11 - thank you, @isampo!
Comment #117
acbramley commentedI've started tackling rolling #114 on to 11.x but there are some pretty major issues:
1. the presave hook is gone, I've moved it into the new OOP hooks class
2. SmartDefaultSettingsTest is an absolute nightmare to maintain. I've done my best to fix all the failures but there's 8 test cases still failing on the expected db log messages
3. There were some other pretty major conflicts which I hopefully have fixed properly.
Please don't upload any more patches, let's try to get this in!
Comment #118
chrisla commentedpatch from 114 works for me but produces this error as well:
Warning: Undefined array key "styles" in Drupal\ckeditor5\Plugin\CKEditor5Plugin\ListPlugin->getDynamicPluginConfig() (line 99 of core/modules/ckeditor5/src/Plugin/CKEditor5Plugin/ListPlugin.php)Comment #119
chrisla commentedwrapping new condition in ListPlugin.php with an
isset()fixed my error. New patch here for 10.4Comment #120
possibriI was still getting the error from #112 after adding the patch from #119 on 10.4.5. Turns out when submitting the form values to the plugin config, it was trying to set the "styles" setting outside of the "properties" array. This patch fixes that.
Comment #125
acbramley commentedCreating new MRs for rebases is not ideal, now reviewers/contributors don't know where to look. Same goes for uploading patches for various fixes, now it's not clear what the canonical source is. We need to make sure the fixes from the patches in #119 and #120 are valid and they are rolled into the canonical MR.
Closing the old MR for now.
Comment #126
acbramley commentedPatches in #119 and #120 seem to be missing something, again it's hard to figure out what since no interdiffs have been provided. When applied to 10.3.x I'm unable to save the editor config screen as it complains about the
propertieskey in config schema.Going all the way back to #86 is working on 10.3.
Comment #131
acbramley commentedI accidentally rebased onto the closed branch so I've toggled MRs since the latest one had other issues.
Please, if you want to contribute to this issue do not upload more patches or open more MRs, instead get push access via the button under the issue summary and contribute directly to this MR
https://git.drupalcode.org/project/drupal/-/merge_requests/11100
Comment #132
acbramley commentedGot this green, it would be great for people to test this on 11.x with the latest changes in the MR.
God help the next person that has to deal with SmartDefaultSettingsTest 💀
Comment #133
needs-review-queue-bot commentedThe Needs Review Queue Bot tested this issue. It fails the Drupal core commit checks. Therefore, this issue status is now "Needs work".
This does not mean that the patch necessarily needs to be re-rolled or the MR rebased. Read the Issue Summary, the issue tags and the latest discussion here to determine what needs to be done.
Consult the Drupal Contributor Guide to find step-by-step guides for working with issues.
Comment #134
acbramley commentedComment #135
roshanibhangale commentedHi
have manually tested MR 11100 on Drupal 11 version.
The MR is applied Successfully...
For ul and ol type the styles are showing sa per the selection on the node page.
Attaching screenshot for reference
RTBC+1
Keeping in need review for code verification.
Comment #136
ericgsmith commentedChanges on the MR11100 look good to me and likewise with #135 I have tested this and the functionality and upgrade path work as expected.
I've been running versions of this patch in production for a while now without issue.
I think this is ready to go to RTBC - the only thing missing was a change record. I have added one https://www.drupal.org/node/3529709
If somebody can please review / amend the CR then I think this should move to RTBC
Comment #137
acbramley commented@ericgsmith the CR reads very well! I can't RTBC myself because I did a lot of the code changes but I think it's fine for you to.
Also kicked off another rebase since the branch was quite behind. Thank goodness there weren't any more conflicts!
Comment #138
ericgsmith commentedThanks Adam, and thank you for all the work here!
Comment #140
longwaveGreat work here - nice to see this finally land! Tagging as a release highlight and will publish the change record.
Committed e117838 and pushed to 11.x. Thanks!
I tried to credit everyone who provided code changes or helpful comments that moved the issue along in some way; I did not credit those who just uploaded patches, because we should be using MR workflows now. Apologies if I missed anyone as there were a lot of comments to read.
Comment #142
acbramley commentedGreat effort everyone, thanks @longwave
Comment #143
pascuperbla commentedIt still produces the 'Warning: Undefined array key "styles"' indicated in comment #118, but on line 111. I'm uploading a patch that fixes the warning.
Comment #144
acbramley commentedHi @pascuperbla that will need to be fixed in a new issue, are you able to create that and add the steps to produce the warning?
Comment #145
cboyden commentedI'm interested in backporting this to 10.6 - should I file a separate issue? Is it the kind of thing that might make it in to that branch?
Comment #146
longwave@cboyden is there a reason you can't upgrade to Drupal 11? 10.6 is a maintenance minor release where we try to minimise changes to ensure stability; the criteria for backports is listed at https://www.drupal.org/about/core/policies/core-change-policies/allowed-... - as a feature request this doesn't appear to fit the criteria.
Comment #147
darvanenI needed this before our D11 upgrade.
Here's a function-only patch I made for 10.4 that works alright so far. YMMV
Comment #149
someshver commentedThe issue will be fixed in Drupal 11.3, but for 11.2 there’s currently no patch available. I recently upgraded from Drupal 10.5 to 11.2, and the functionality has stopped working. The available patches are also failing to apply.We can use the patch of this MR (https://git.drupalcode.org/project/drupal/-/merge_requests/11100) for the 11.2.x .
Comment #150
isampo commentedI doubt the MR diff would ever change anymore but still here's a static patch from the MR11100 changes for composer installs.
Comment #151
liam morlandI have successfully applied
3274635-cke-lists-10-4-x.patchto Drupal 10.5. I needed to leave out the changes tockeditor5.js. With those changes in place, there was no styling on the lists inside CKEditor.It would be helpful to be able to configure
useAttribute.Comment #152
wim leersThis introduced a regression, due to the way its update path was implemented.
ckeditor5_post_update_list_type()cannot update shipped config. Which means this broke any module or recipe that uses this CKEditor 5 plugin and was targeting Drupal 11.2, because it does not provide an automatic update path to 11.3.This should have followed the pattern described in #3521618: Add generic interface + base class for upgrade paths that require config changes: it should be triggered in
Editor::preSave().First known module to break due to this: Canvas. See #3560831: Update Canvas' CKEditor 5 config to allow using the native <ol type> vs <ul type> picker.
Comment #153
wim leersHm … @catch pointed me to https://git.drupalcode.org/project/drupal/-/commit/e1178387b0a87b9dda6bd... — I missed
Ckeditor5Hooks::editorPresave(), sorry! 🙈The update path should result in all Text Editor config entities using CKEditor 5 and its
ckeditor5_listplugin getting thestyleskey in addition toreversedandstartIndex.The update path that was added here only does so if both the
ckeditor5_listandckeditor5_sourceEditingCKE5 plugins are active for a given Text Editor. That's an accurate way of determining whetherstylesshould be TRUE or FALSE.But if ONLY
ckeditor5_listis present,stylesshould always be set to FALSE. That part is missing here.Comment #155
wim leersInitial MR up. Still needs expanded update path tests.
Comment #156
catchBumping priority & we should fix the upgrade path before 11.3.0
Comment #157
phenaproximaThis change makes sense to me. Please ship it as a super-critical bug fix. Can we add an explicit test in a follow-up MR?
Comment #158
phenaproximaFiled #3561755: Add an update path test for #3274635 for update path tests.
Comment #159
xjm@catch and I discussed this hotfix. We agree it can be committed with the upgrade tests as a followup if the upgrade has been manually tested so that we confirm the issue is actually resolved. It should be tested both on a site where the update already broke and on a site that has not yet updated. Thanks!
Comment #160
wim leersManual test
Manually tested with Canvas' shipped config. I know I crafted the MR, so that's perhaps atypical, but I literally created the MR in a few mins without testing it at all. So I'm hoping this is enough to satisfy #159 😊
Installed Canvas 1.0 on Drupal 11.2, then updated to 11.3, and ran update path.
👆
stylesis absent, leading to a validation error ❌👆
styleshas been added ✅Do we want to also provide an explicit update path for sites already on 11.3 beta or RC?
I only tested the latter.
If you want the former to work too, then we'd need to add a new post-update hook. That'd then help sites who've already updated to
11.3.0-(beta|rc).Comment #161
longwaveIn order to commit this we need to manually test with a site that already broke as well, but given they have already run the update hook I don't see how this fix will help them.
Am I correct in thinking that we could do this to cover both cases:
ckeditor5_post_update_list_type()to ckeditor5_post_update_list_type_2()ckeditor5_post_update_list_type()back as a no-opI think this should:
I haven't tested this to see if it works, however.
Comment #162
catchYes I think we need to do #161 to fix any sites that already updated to the release candidate. Moving to needs work for that.
Comment #163
catchPushed a commit that does #161. The comments might need refinement but I think that's what we need for sites that went to the release candidate.
Needs manual testing both from 11.2.x direct to 11.3.x, and from 11.2.x -> 11.3.0-rc1 -> 11.3.x
Comment #164
phenaproximaDid part of the necessary manual testing:
Comment #165
phenaproximaTested the already-at-RC scenario:
That seems right, then!
Comment #166
phenaproximaDrupal CMS is working around this, so not a blocker, but tagging it as an issue of interest. It'd be nice for this to be fixed before our stable release!
Comment #167
catchIt looks like that test confirms it for the case where the update would already have worked, but not for the case where it didn't?
Comment #168
ericgsmith commentedI can confirm the upgrade path is working for the scenario where the config was missed (in addition to verifying steps from 164/1165) - however there is an additional bug introduced now where the config can not be correctly updated after the update hook has run.
Update hook working:
New bug
After the update hook is run I edit the format to enable the plugin as per the change record:
What is happening with this change is that the pre save hook runs, source editing is still disabled so the else if condition
array_key_exists('ckeditor5_list', $settings['plugins'])is still true so the config gets reset toFALSEagain despite the user enabling it.I think we need to change to something like this similar to the check on L425 to ensure that we are only setting it to false it it doesn't exist already, e.g:
Comment #169
gábor hojtsySummar of Slack discussion with info from @catch and @xjm:
Note that deferring the upgrade path tests is dependent on manual testing of the upgrade path itself (in addition to the bug fixes), both from 11.2 and from an 11.3 beta with the broken update. See the comment in #159. That goes for subsequent regressions as well as the original one.
Comment #170
ericgsmith commentedI applied the suggested after testing it - I note comment above was for somebody to review it first, but to move the issue forward I've applied it so I can set it to Needs review.
I repeated my manual tests above and the upgrade path is still work, and the issue I found in 168 is resolved although somebody else would need to verify that.
Manual test - 11.2.x => 11.3.0-rc1 => 3274635-add-missing-update-path-if-using-CKE5-list-plugin-only at 2f315be
Config before upgrade:
After update to 11.3.0-rc1
After update to 3274635-add-missing-update-path-if-using-CKE5-list-plugin-only at 2f315be
After enabling the styles option via UI it saved correctly and is now present:
Setting to needs review for the remaining tasks from #169:
suggestioncommit needs reviewand applying.Comment #172
godotislateRebased and added the update path test and UI test.
Test-only job: https://git.drupalcode.org/issue/drupal-3274635/-/jobs/7635895
Update path test fails as expected.
(UI test does not fail, since UI was not broken previously).
Comment #173
catchTests look great both for the upgrade path and the UI nearly-regression, glad we were able extend the existing tests for the new coverage.
Comment #177
longwaveThanks for the swift fixes here. The new test coverage looks great, as simple as can be while proving the problem is fixed - nice work.
Committed and pushed 70a49ee7a2a to 11.x and 2a333220f57 to 11.3.x. Thanks!
Comment #179
wim leersNice catch on https://git.drupalcode.org/project/drupal/-/merge_requests/14034/diffs?c... — I definitely didn't think about the scenario where an early 11.3 RC adopter would have already modified the config! 🙈
Comment #180
penyaskitoActually re-reading the diff Wim linked:
Shouldn't be
?
Comment #181
godotislateRe: #180, no, because
stylesis a not a subkey of itself (styles). There was some conditional logic I thought about simplifying and tweaking when I added the tests, but since the existing code was already manually tested and there was urgency, I think it's fine.Comment #182
penyaskitoRe-read the code and you are right, I misread this as it was
issetand notarray_key_exists🤦🏽Comment #183
ruslan piskarovFYI.

Drupal 10.5.3.
Applied #143.
Can't save text format when enabled styles.
"'properties' is an unknown key because settings.plugins.%key is ckeditor5_style (see config schema type ckeditor5.plugin.ckeditor5_style)"
Comment #185
camilo.escobar commentedI just encountered the same error after applying patch #143 in Drupal 10.5.2:
"'properties' is an unknown key because settings.plugins.%key is ckeditor5_style (see config schema type ckeditor5.plugin.ckeditor5_style).
Enable at least one style, otherwise disable the Style plugin."