feat: some experiments

This commit is contained in:
Max Richter
2025-09-26 17:32:16 +02:00
parent ea978b48f6
commit 8ca5152c3c
12 changed files with 147 additions and 66 deletions

View File

@@ -22,9 +22,9 @@ type Block struct {
Fields []BlockField
Optional bool
Value any
content string
content Slice
}
func (b Block) GetContent() string {
return b.content
return b.content.String()
}