aboutsummaryrefslogtreecommitdiff
path: root/ui/messages/html/codeblock.go
diff options
context:
space:
mode:
Diffstat (limited to 'ui/messages/html/codeblock.go')
-rw-r--r--ui/messages/html/codeblock.go14
1 files changed, 8 insertions, 6 deletions
diff --git a/ui/messages/html/codeblock.go b/ui/messages/html/codeblock.go
index 4a0766c..7f6b462 100644
--- a/ui/messages/html/codeblock.go
+++ b/ui/messages/html/codeblock.go
@@ -22,15 +22,17 @@ import (
)
type CodeBlockEntity struct {
- *BaseEntity
+ *ContainerEntity
Background tcell.Style
}
func NewCodeBlockEntity(children []Entity, background tcell.Style) *CodeBlockEntity {
return &CodeBlockEntity{
- BaseEntity: &BaseEntity{
- Tag: "pre",
- Block: true,
+ ContainerEntity: &ContainerEntity{
+ BaseEntity: &BaseEntity{
+ Tag: "pre",
+ Block: true,
+ },
Children: children,
},
Background: background,
@@ -39,8 +41,8 @@ func NewCodeBlockEntity(children []Entity, background tcell.Style) *CodeBlockEnt
func (ce *CodeBlockEntity) Clone() Entity {
return &CodeBlockEntity{
- BaseEntity: ce.BaseEntity.Clone().(*BaseEntity),
- Background: ce.Background,
+ ContainerEntity: ce.ContainerEntity.Clone().(*ContainerEntity),
+ Background: ce.Background,
}
}