10 lines
235 B
Go
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
|
|
}
|