mirror of
https://github.com/documentationjs/documentation.git
synced 2026-01-25 14:26:29 +00:00
Also: * Fixes many issues in the default theme * Moves the default theme from default-theme to default_theme * Creates a new, robust linker infrastructure that will support bare links * Replaces slugg with github-slugger * Outputs unknown types as Any. Fixes #451
20 lines
622 B
Plaintext
20 lines
622 B
Plaintext
<div class="clearfix">
|
|
<% members.forEach(function(member) { %>
|
|
<div class='border-bottom' id='<%- member.namespace %>'>
|
|
<div class="clearfix small pointer toggle-sibling">
|
|
<div class="py1 contain">
|
|
<a class='icon pin-right py1 dark-link caret-right'></a>
|
|
<span class='code strong strong truncate'><%= shortSignature(member) %></span>
|
|
</div>
|
|
</div>
|
|
<div class="clearfix hide toggle-target">
|
|
<%= renderSection({
|
|
section: member,
|
|
renderSection: renderSection,
|
|
nested: true
|
|
}) %>
|
|
</div>
|
|
</div>
|
|
<% }) %>
|
|
</div>
|