mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 18:32:20 +08:00
60d9fd4816
Summary: Lots o docs Test Plan: Run tests, review docs Reviewers: evan Reviewed By: evan Differential Revision: https://review.inboxapp.com/D1496
57 lines
1,000 B
HTML
57 lines
1,000 B
HTML
{{>_header}}
|
|
|
|
<div class="page-title">
|
|
{{name}}
|
|
{{#if documentation.superClass}}
|
|
<span class="extends">extends {{documentation.superClass}}</span>
|
|
{{/if}}
|
|
</div>
|
|
|
|
<div id="sidebar">
|
|
{{>_sidebar}}
|
|
</div>
|
|
|
|
<div id="main">
|
|
<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}}
|
|
</div>
|
|
|
|
{{>_footer}}
|