methods.template.html 713 B

123456789101112131415161718192021222324252627282930
  1. {%- if doc.methods %}
  2. <h2>Methods</h2>
  3. <ul class="methods">
  4. {%- for method in doc.methods %}
  5. <li id="{$ method.name $}">
  6. <div class="method-header">
  7. <h3>{$ functionSyntax(method) $}</h3>
  8. <div>{$ method.description | marked $}</div>
  9. </div>
  10. {% if method.params %}
  11. <h4>Parameters</h4>
  12. {$ paramTable(method.params) $}
  13. {% endif %}
  14. {% if method.this %}
  15. <h4>Method's {% code %}this{% endcode %}</h4>
  16. {$ method.this | marked $}
  17. {% endif %}
  18. {% if method.returns %}
  19. <h4>Returns</h4>
  20. {$ typeInfo(method.returns) $}
  21. {% endif %}
  22. </li>
  23. {% endfor -%}
  24. </ul>
  25. {%- endif -%}