File: tooltip-body.handlebars

package info (click to toggle)
elixir-ex-doc 0.35.1%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,784 kB
  • sloc: javascript: 2,848; makefile: 15; xml: 12; sh: 5
file content (17 lines) | stat: -rw-r--r-- 450 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{#if isPlain}}
  <section class="docstring docstring-plain">
    {{this.hint.description}}
  </section>
{{else}}
  <div class="detail-header">
    <h1 class="signature">
      <span translate="no">{{this.hint.title}}</span>
      <div class="version-info" translate="no">{{this.hint.version}}</div>
    </h1>
  </div>
  {{#if this.hint.description}}
    <section class="docstring">
      {{{this.hint.description}}}
    </section>
  {{/if}}
{{/if}}