<div id="{{obj.name}}">
    <h3 class="methodname">{{obj.name}}{{methodsig obj}} <a class="font-icon" href="#{{obj.name}}">&#58216;</a></h3>
    <p>{{{parse obj.description}}}</p>
{{#each obj.examples}}
    {{> example content=this}}
{{/each}}

    {{#if obj.params}}
    <h4>Parameters</h4>
    <table>
        {{#each obj.params}}
        <tr>
            <td>{{name}}</td><td>{{{type-link type}}}</td><td>{{{parse description}}}</td>
        </tr>
        {{/each}}
    </table>
    {{/if}}

    {{#if obj.returns}}
    <h4>Returns</h4>
    {{#each obj.returns}}
    {{{type-link type}}} {{{parse description}}}
    {{/each}}
    {{/if}}
</div>
