<% docs.forEach(function(s) { %>
<% if (s.kind === 'note' && !s.children) { %>
<%=renderNote({ note: s })%>
<% } else { %>
<%= renderSection({
section: s,
renderSection: renderSection,
renderSectionList: renderSectionList,
renderParamProperty: renderParamProperty
}) %>
<% } %>
<% }) %>