aboutsummaryrefslogtreecommitdiff
path: root/ui/messages/html/blockquote.go
diff options
context:
space:
mode:
Diffstat (limited to 'ui/messages/html/blockquote.go')
-rw-r--r--ui/messages/html/blockquote.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/ui/messages/html/blockquote.go b/ui/messages/html/blockquote.go
index 288d86d..bb7c009 100644
--- a/ui/messages/html/blockquote.go
+++ b/ui/messages/html/blockquote.go
@@ -40,6 +40,11 @@ func NewBlockquoteEntity(children []Entity) *BlockquoteEntity {
}}
}
+func (be *BlockquoteEntity) AdjustStyle(fn AdjustStyleFunc) Entity {
+ be.BaseEntity = be.BaseEntity.AdjustStyle(fn).(*BaseEntity)
+ return be
+}
+
func (be *BlockquoteEntity) Clone() Entity {
return &BlockquoteEntity{ContainerEntity: be.ContainerEntity.Clone().(*ContainerEntity)}
}