|
|
|
@ -19,6 +19,8 @@ class Attribute<T> { |
|
|
|
|
Attribute.underline.key: Attribute.underline, |
|
|
|
|
Attribute.strikeThrough.key: Attribute.strikeThrough, |
|
|
|
|
Attribute.link.key: Attribute.link, |
|
|
|
|
Attribute.color.key: Attribute.color, |
|
|
|
|
Attribute.background.key: Attribute.background, |
|
|
|
|
Attribute.header.key: Attribute.header, |
|
|
|
|
Attribute.list.key: Attribute.list, |
|
|
|
|
Attribute.codeBlock.key: Attribute.codeBlock, |
|
|
|
@ -35,6 +37,10 @@ class Attribute<T> { |
|
|
|
|
|
|
|
|
|
static final LinkAttribute link = LinkAttribute(null); |
|
|
|
|
|
|
|
|
|
static final ColorAttribute color = ColorAttribute(null); |
|
|
|
|
|
|
|
|
|
static final BackgroundAttribute background = BackgroundAttribute(null); |
|
|
|
|
|
|
|
|
|
static final HeaderAttribute header = HeaderAttribute(); |
|
|
|
|
|
|
|
|
|
static final ListAttribute list = ListAttribute(null); |
|
|
|
@ -91,7 +97,7 @@ class Attribute<T> { |
|
|
|
|
Attribute attribute = clone(origin, value); |
|
|
|
|
return attribute; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static Attribute clone(Attribute origin, dynamic value) { |
|
|
|
|
return Attribute(origin.key, origin.scope, value); |
|
|
|
|
} |
|
|
|
@ -135,6 +141,15 @@ class LinkAttribute extends Attribute<String> { |
|
|
|
|
LinkAttribute(String val) : super('link', AttributeScope.INLINE, val); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
class ColorAttribute extends Attribute<String> { |
|
|
|
|
ColorAttribute(String val) : super('color', AttributeScope.INLINE, val); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
class BackgroundAttribute extends Attribute<String> { |
|
|
|
|
BackgroundAttribute(String val) |
|
|
|
|
: super('background', AttributeScope.INLINE, val); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
class HeaderAttribute extends Attribute<int> { |
|
|
|
|
HeaderAttribute({int level}) : super('header', AttributeScope.BLOCK, level); |
|
|
|
|
} |
|
|
|
|