mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 04:25:31 +08:00
45 lines
733 B
HTML
45 lines
733 B
HTML
---
|
|
layout: docs
|
|
title: {{name}}
|
|
---
|
|
|
|
<h2>Summary</h2>
|
|
|
|
<div class="markdown-from-sourecode">
|
|
<p>{{{documentation.description}}}</p>
|
|
</div>
|
|
|
|
<ul>
|
|
{{#each documentation.sections}}
|
|
<li><a href="#{{name}}">{{name}}</a></li>
|
|
{{/each}}
|
|
</ul>
|
|
|
|
|
|
{{#if documentation.classProperties.length}}
|
|
<h3>Class Properties</h3>
|
|
|
|
{{#each documentation.classProperties}}
|
|
{{>_property}}
|
|
{{/each}}
|
|
|
|
{{/if}}
|
|
|
|
{{#if documentation.classMethods.length}}
|
|
<h3>Class Methods</h3>
|
|
|
|
{{#each documentation.classMethods}}
|
|
{{>_function}}
|
|
{{/each}}
|
|
|
|
{{/if}}
|
|
|
|
|
|
{{#if documentation.instanceMethods.length}}
|
|
<h3>Instance Methods</h3>
|
|
|
|
{{#each documentation.instanceMethods}}
|
|
{{>_function}}
|
|
{{/each}}
|
|
|
|
{{/if}}
|