pulumi/pkg/codegen/docs/templates/examples.tmpl

20 lines
389 B
Cheetah

{{ define "examples" -}}
{{ print "{{% examples %}}" }}
## Example Usage
{{ htmlSafe "{{< chooser language \"typescript,python,go,csharp\" / >}}" }}
{{- range . }}
{{ .Title }}
{{- range $key, $val := .Snippets }}
{{ print "{{% example " }}{{ $key }}{{ print " %}}" }}
{{ htmlSafe $val }}
{{ print "{{% /example %}}" }}
{{ end }}
{{- end }}
{{ print "{{% /examples %}}" }}
{{- end }}