Compare commits

...

2 Commits

Author SHA1 Message Date
01zulfi
8e1484a029 editor: fix checklist parsing as bulletlist
* reduce list-item's parseHTML priority lower than check-list-item's parseHTML priority

Signed-off-by: 01zulfi <85733202+01zulfi@users.noreply.github.com>
2025-11-05 11:01:52 +05:00
01zulfi
92ba4d7624 Merge pull request #8907 from streetwriters/release/v3.3.4
web: bump version to 3.3.4
2025-11-03 17:13:35 +05:00

View File

@@ -24,7 +24,7 @@ export const ListItem = TiptapListItem.extend({
parseHTML() {
return [
{
priority: 100,
priority: 50,
tag: `li`,
getContent: ensureLeadingParagraph
}