@ckeditor/ckeditor5-list 44.2.1 → 44.3.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/list.js +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +9 -9
- package/src/list/converters.js +1 -1
package/dist/index.js
CHANGED
|
@@ -1909,7 +1909,7 @@ function shouldUseBogusParagraph(item, attributeNames, blocks = getAllListItemBl
|
|
|
1909
1909
|
}
|
|
1910
1910
|
for (const attributeKey of item.getAttributeKeys()){
|
|
1911
1911
|
// Ignore selection attributes stored on block elements.
|
|
1912
|
-
if (attributeKey.startsWith('selection:')) {
|
|
1912
|
+
if (attributeKey.startsWith('selection:') || attributeKey == 'htmlEmptyBlock') {
|
|
1913
1913
|
continue;
|
|
1914
1914
|
}
|
|
1915
1915
|
// Don't use bogus paragraph if there are attributes from other features.
|