forked from stdlib-js/stdlib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomment.hbs
More file actions
29 lines (29 loc) · 972 Bytes
/
comment.hbs
File metadata and controls
29 lines (29 loc) · 972 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{{#with comment}}
{{#if hasVisibleComponent}}
<div class="tsd-comment tsd-typography">
{{#if shortText}}
<div class="lead">
{{#markdown}}{{{shortText}}}{{/markdown}}
</div>
{{/if}}
{{#if text}}
{{#markdown}}{{{text}}}{{/markdown}}
{{/if}}
{{#if tags}}
{{#each tags}}
{{#ifCond tagName "===" "example"}}
{{else}}
{{#if @first}}
<dl class="tsd-comment-tags">
{{/if}}
<dt>{{tagName}}</dt>
<dd>{{#markdown}}{{{text}}}{{/markdown}}</dd>
{{#if @last}}
</dl>
{{/if}}
{{/ifCond}}
{{/each}}
{{/if}}
</div>
{{/if}}
{{/with}}