{{#if properties~}}**属性**

<table>
  <thead>
    <tr>
      {{#each (tableHeadHtml properties "name|名称" "type|类型" "defaultvalue|默认值" "description|描述")}}<th>{{this}}</th>{{/each}}
    </tr>
  </thead>
  <tbody>
    {{#tableRow properties "name" "type" "defaultvalue" "description" ~}}
    <tr>
    {{#if @col1}}<td>{{>param-table-name}}</td>{{/if~}}
    {{#if @col2}}<td>{{>linked-type-list types=type.names delimiter=" | " html=true}}</td>{{/if~}}
    {{#if @col3}}<td>{{>defaultvalue}}</td>{{/if~}}
    {{#if @col4}}<td>{{{md (inlineLinks description)}}}</td>{{/if}}
    </tr>
    {{~/tableRow}}
  </tbody>
</table>

{{/if}}