{{#if properties~}}**Properties**

<table>
  <thead>
    <tr>
      {{#each (tableHeadHtml properties "name|Name" "type|Type" "defaultvalue|Default" "description|Description")}}<th>{{this}}</th>{{/each}}
    </tr>
  </thead>
  <tbody>
    {{#tableRow properties "name" "type" "defaultvalue" "description" ~}}
    <tr>
    {{#if @col1}}<td>{{name}}</td>{{/if~}}
    {{#if @col2}}<td>{{>linked-type-list types=type.names delimiter=" | " }}</td>{{/if~}}
    {{#if @col3}}<td>{{>defaultvalue}}</td>{{/if~}}
    {{#if @col4}}<td>{{{stripNewlines (inlineLinks description)}}}</td>{{/if}}
    </tr>
    {{~/tableRow}}
  </tbody>
</table>

{{/if}}