Files
marka/renderer/renderer.go
2025-08-16 20:38:40 +02:00

10 lines
235 B
Go

package renderer
func RenderFile(templatePath, jsonPath string) ([]byte, error) {
// TODO:
// 1) load aliases + template
// 2) validate JSON against schema (optional)
// 3) apply codecs to produce Markdown
return []byte{}, nil
}