18 lines
445 B
HTML
18 lines
445 B
HTML
{% include "lib/githubLinks.html" -%}
|
|
{% extends 'layout/base.template.html' %}
|
|
|
|
{% block body %}
|
|
include ../../_util-fns
|
|
.l-main-section
|
|
p.location-badge.
|
|
exported from {@link {$ doc.moduleDoc.id $} {$doc.moduleDoc.id $} }
|
|
defined in {$ githubViewLink(doc) $}
|
|
|
|
:markdown
|
|
{%- if doc.notYetDocumented %}
|
|
### *Not Yet Documented*
|
|
{% else %}
|
|
{$ doc.description | indentForMarkdown(4) | trimBlankLines $}
|
|
{% endif -%}
|
|
{% endblock %}
|