{{#if list}}
    {{#if name}}
        <h7>{{name}}</h7>
    {{/if}}
    <table class="{{className 'paramsTable'}}">
        <thead>
                <th class="{{className 'paramsParameterHeader'}}">Property</th>
                <th class="{{className 'paramsTypeHeader'}}">Type</th>
                <th class="{{className 'paramsDescriptionHeader'}}">Description</th>
        </thead>
        <tbody>
            {{#each list}}
                <tr>
                    <td class="{{className 'paramsParameterData'}}">
                        <code>{{this.name}}</code>
                    </td>
                    <td class="{{className 'paramsTypeData'}}">
                        <code>{{> type this.type}}</code>
                    </td>
                    <td class="{{className 'paramsDescriptionData'}}">
                        {{> description this.description}}
                        {{#each this.tags}}
                            {{#switch this.title}}
                                {{#case 'default'}}<em class="me-1">default</em> <code>{{this.description}}</code>{{/case}}
                            {{/switch}}
                        {{/each}}
                    </td>
                </tr>
            {{/each}}
        </tbody>
    </table>
{{/if}}
