2015-09-16 02:21:55 -04:00
|
|
|
{% include "lib/githubLinks.html" -%}
|
|
|
|
{% include "lib/paramList.html" -%}
|
|
|
|
{% extends 'layout/base.template.html' -%}
|
|
|
|
|
|
|
|
{% block body %}
|
2015-09-17 21:09:41 -04:00
|
|
|
include ../../_util-fns
|
2015-09-16 02:21:55 -04:00
|
|
|
.l-main-section
|
2015-11-03 07:30:11 -05:00
|
|
|
h2(class="function export")
|
|
|
|
pre.prettyprint
|
|
|
|
code.
|
2015-11-10 13:34:23 -05:00
|
|
|
export {$ doc.name $}{$ paramList(doc.parameters) | indent(8, true) | trim $}{$ returnType(doc.returnType) $}
|
2015-09-16 02:21:55 -04:00
|
|
|
|
2015-11-10 13:31:46 -05:00
|
|
|
:marked
|
2015-11-13 11:34:57 -05:00
|
|
|
{%- if doc.notYetDocumented %}
|
|
|
|
*Not Yet Documented*
|
|
|
|
{% else %}
|
2015-09-17 20:51:32 -04:00
|
|
|
{$ doc.description | indentForMarkdown(4) | trimBlankLines $}
|
2015-11-13 11:34:57 -05:00
|
|
|
{% endif %}
|
2015-09-16 02:21:55 -04:00
|
|
|
{% endblock %}
|