mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 18:32:20 +08:00
48 lines
855 B
HTML
48 lines
855 B
HTML
<div class="page-title">
|
|
{{name}}
|
|
{{#if documentation.superClass}}
|
|
<span class="extends">extends {{documentation.superClass}}</span>
|
|
{{/if}}
|
|
</div>
|
|
|
|
|
|
<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}}
|