mirror of
https://github.com/external-secrets/external-secrets.git
synced 2024-12-14 11:57:59 +00:00
7b883778e9
* feat: add docs Signed-off-by: Moritz Johner <beller.moritz@googlemail.com>
48 lines
958 B
Smarty
48 lines
958 B
Smarty
{{ define "packages" }}
|
|
|
|
{{ with .packages}}
|
|
<p>Packages:</p>
|
|
<ul>
|
|
{{ range . }}
|
|
<li>
|
|
<a href="#{{- packageAnchorID . -}}">{{ packageDisplayName . }}</a>
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
{{ end}}
|
|
|
|
{{ range .packages }}
|
|
<h2 id="{{- packageAnchorID . -}}">
|
|
{{- packageDisplayName . -}}
|
|
</h2>
|
|
|
|
{{ with (index .GoPackages 0 )}}
|
|
{{ with .DocComments }}
|
|
<p>
|
|
{{ safe (renderComments .) }}
|
|
</p>
|
|
{{ end }}
|
|
{{ end }}
|
|
|
|
Resource Types:
|
|
<ul>
|
|
{{- range (visibleTypes (sortedTypes .Types)) -}}
|
|
{{ if isExportedType . -}}
|
|
<li>
|
|
<a href="{{ linkForType . }}">{{ typeDisplayName . }}</a>
|
|
</li>
|
|
{{- end }}
|
|
{{- end -}}
|
|
</ul>
|
|
|
|
{{ range (visibleTypes (sortedTypes .Types))}}
|
|
{{ template "type" . }}
|
|
{{ end }}
|
|
<hr/>
|
|
{{ end }}
|
|
|
|
<p><em>
|
|
Generated with <code>gen-crd-api-reference-docs</code>.
|
|
</em></p>
|
|
|
|
{{ end }}
|