package blocks import "fmt" func (b TemplateBlock) ParseListBlock(input string) (key string, value any, error error) { fmt.Printf("Parsing List: '%q'", input) return "", nil, nil }