fix: Restrict content in notices, closes #5624

This commit is contained in:
Tom Moor
2023-07-29 23:42:26 -04:00
parent 1864ed605f
commit 3b43460a0a
4 changed files with 4 additions and 4 deletions

View File

@@ -17,7 +17,7 @@ export default class BulletList extends Node {
get schema(): NodeSpec {
return {
content: "list_item+",
group: "block",
group: "block list",
parseDOM: [{ tag: "ul" }],
toDOM: () => ["ul", 0],
};