add list check attribute

pull/13/head
li3317 4 years ago
parent 3853c92bd1
commit 8b253517b4
  1. 3
      lib/models/documents/attribute.dart

@ -116,6 +116,9 @@ class Attribute<T> {
// "attributes":{"list":"ordered"} // "attributes":{"list":"ordered"}
static Attribute<String> get ol => ListAttribute('ordered'); static Attribute<String> get ol => ListAttribute('ordered');
// "attributes":{"list":"check"}
static Attribute<String> get check => ListAttribute('check');
// "attributes":{"indent":1"} // "attributes":{"indent":1"}
static Attribute<int> get indentL1 => IndentAttribute(level: 1); static Attribute<int> get indentL1 => IndentAttribute(level: 1);

Loading…
Cancel
Save