mirror of
https://github.com/thegeeklab/wp-plugin-go.git
synced 2024-11-22 20:30:40 +00:00
16 lines
331 B
Cheetah
16 lines
331 B
Cheetah
{{ with .Name }}# {{ . }}{{ end }}
|
|
{{- with .Description }}
|
|
|
|
{{ . }}
|
|
{{- end }}
|
|
{{- if .GlobalArgs }}
|
|
|
|
## Parameters
|
|
{{ range $v := .GlobalArgs }}
|
|
**_{{ $v.Name }}_**{{ with $v.Default }} (defaut: {{ . }}){{ end }}{{ if $v.Description }}{{ "\\" }}{{ end }}
|
|
{{- with $v.Description }}
|
|
 {{ . }}
|
|
{{- end }}
|
|
{{ end -}}
|
|
{{ end -}}
|