Render takes a chart, optional values, and value overrides, and attempts to render the Go templates using the default options.
(chrt ci.Charter, values common.Values)
| 84 | // Render takes a chart, optional values, and value overrides, and attempts to |
| 85 | // render the Go templates using the default options. |
| 86 | func Render(chrt ci.Charter, values common.Values) (map[string]string, error) { |
| 87 | return new(Engine).Render(chrt, values) |
| 88 | } |
| 89 | |
| 90 | // RenderWithClient takes a chart, optional values, and value overrides, and attempts to |
| 91 | // render the Go templates using the default options. This engine is client aware and so can have template |
searching dependent graphs…