diff --git a/lib/models/documents/attribute.dart b/lib/models/documents/attribute.dart index bf33424c..51f4726e 100644 --- a/lib/models/documents/attribute.dart +++ b/lib/models/documents/attribute.dart @@ -116,6 +116,9 @@ class Attribute { // "attributes":{"list":"ordered"} static Attribute get ol => ListAttribute('ordered'); + // "attributes":{"list":"check"} + static Attribute get check => ListAttribute('check'); + // "attributes":{"indent":1"} static Attribute get indentL1 => IndentAttribute(level: 1);