Update Attribute class

pull/13/head
singerdmx 4 years ago
parent 04ed863a6d
commit a0c9293184
  1. 26
      lib/models/documents/attribute.dart
  2. 2
      lib/models/documents/style.dart

@ -17,10 +17,10 @@ class Attribute<T> {
Attribute.underline.key: Attribute.underline,
Attribute.strikeThrough.key: Attribute.strikeThrough,
Attribute.link.key: Attribute.link,
Attribute.headerAttribute.key: Attribute.headerAttribute,
Attribute.listAttribute.key: Attribute.listAttribute,
Attribute.codeBlockAttribute.key: Attribute.codeBlockAttribute,
Attribute.blockQuoteAttribute.key: Attribute.blockQuoteAttribute,
Attribute.header.key: Attribute.header,
Attribute.list.key: Attribute.list,
Attribute.codeBlock.key: Attribute.codeBlock,
Attribute.blockQuote.key: Attribute.blockQuote,
};
static BoldAttribute bold = BoldAttribute();
@ -33,13 +33,23 @@ class Attribute<T> {
static LinkAttribute link = LinkAttribute();
static HeaderAttribute headerAttribute = HeaderAttribute(1);
static HeaderAttribute header = HeaderAttribute(1);
static ListAttribute listAttribute = ListAttribute('ordered');
static ListAttribute list = ListAttribute('ordered');
static CodeBlockAttribute codeBlockAttribute = CodeBlockAttribute();
static CodeBlockAttribute codeBlock = CodeBlockAttribute();
static BlockQuoteAttribute blockQuoteAttribute = BlockQuoteAttribute();
static BlockQuoteAttribute blockQuote = BlockQuoteAttribute();
static Attribute<int> get h1 => header.level1;
static Attribute<int> get h2 => header.level2;
static Attribute<int> get h3 => header.level3;
static Attribute<String> get ul => list.bullet;
static Attribute<String> get ol => list.ordered;
bool get isInline => scope == AttributeScope.INLINE;

@ -14,7 +14,7 @@ class Style {
}
Map<String, Attribute> result = attributes.map((String key, dynamic value) {
var attr = Attribute.fromKeyValue(key, value);
Attribute attr = Attribute.fromKeyValue(key, value);
return MapEntry<String, Attribute>(key, attr);
});
return Style.attr(result);

Loading…
Cancel
Save