feat: refactor some shit

This commit is contained in:
Max Richter
2025-08-17 00:46:45 +02:00
parent 43644c4f40
commit cc8f967f07
20 changed files with 459 additions and 209 deletions

View File

@@ -0,0 +1,10 @@
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
}