Files
marka/template/structs.go
2025-09-26 17:32:16 +02:00

31 lines
560 B
Go

package template
type BlockType string
const (
DataBlock BlockType = "data" // content between lines "{" and "}"
MatchingBlock BlockType = "matching" // everything outside data blocks
)
type BlockField struct {
Path string
CodecType CodecType
Value any
Hidden bool
}
type Block struct {
Type BlockType
Path string
Codec CodecType
ListTemplate string
Fields []BlockField
Optional bool
Value any
content Slice
}
func (b Block) GetContent() string {
return b.content.String()
}