11 lines
187 B
Go
11 lines
187 B
Go
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
|
|
}
|