Files
modeling-app/rust/kcl-lib/src/docs/templates/properties.hbs

14 lines
359 B
Handlebars
Raw Normal View History

{{#if properties}}
{{#if @root.inDefinition}}
#### Properties
{{else}}
## Properties
{{/if}}
| Property | Type | Description | Required |
|----------|------|-------------|----------|
{{#each properties}}
| `{{@key}}` | {{~ > propertyType this ~}} | {{{firstLine this.description}}} | {{#if (lookup ../required @key)}}Yes{{else}}No{{/if}} |
{{/each}}
{{/if}}