Files
marka/parser/blocks/list_block.go
2025-08-17 00:46:45 +02:00

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
}