Skip to content

Commit

Permalink
Merge pull request #5 from HeadspaceMeditation/output-types
Browse files Browse the repository at this point in the history
Output variable types
  • Loading branch information
mrwacky42 authored Nov 11, 2019
2 parents 49475e5 + 6e4843a commit 88e214e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ const markdownTemplate = `
| Name | Description | Type | Default | Required |
|------|-------------|:----:|:-----:|:-----:|
{{- range .Variables }}{{if skip .Pos }}
| {{ tt .Name }} | {{- if .Description}}{{ .Description }}{{ end }} | | {{ tt .Default }} | {{if tt .Default}}no{{else}}yes{{end}} |{{end}}{{end}}
| {{ tt .Name }} | {{- if .Description}}{{ .Description }}{{ end }} | {{- if .Type}}{{ .Type }}{{ end }} | {{ tt .Default }} | {{if tt .Default}}no{{else}}yes{{end}} |{{end}}{{end}}
{{- if .Outputs}}
Expand Down

0 comments on commit 88e214e

Please sign in to comment.