Mailspring/docs-templates/_property.html
Ben Gotow 7edafa3819 feat(docs): doc site generation, doc organization into sections, docs for actions and more
Summary: Lots o docs

Test Plan: Run tests, review docs

Reviewers: evan

Reviewed By: evan

Differential Revision: https://review.inboxapp.com/D1496
2015-05-13 11:44:28 -07:00

18 lines
459 B
HTML

<h4 id={{name}}>{{name}} <a href="#{{name}}" class="link"></a></h4>
<p>{{{description}}}</p>
{{#if arguments.length}}
<table class="arguments">
{{#each arguments}}
<tr>
<td style="width:15%;">
<em>{{name}}</em>
</td>
<td>
{{#if isOptional}}<span class="optional">Optional</span>{{/if}}
{{{description}}}
</td>
</tr>
{{/each}}
</table>
{{/if}}