angular-cn/aio/tools/transforms/templates/includes/_annotations.html

12 lines
425 B
HTML
Raw Normal View History

{%- if doc.decorators.length %}
2017-04-24 13:49:37 -04:00
<div class="annotations api-section">
<h2>Annotations</h2>
{%- for decorator in doc.decorators %}
<pre class="prettyprint no-bg">
<code>@{$ decorator.name $}{$ params.paramList(decorator.arguments) | indent(10, false) $}</code>
</pre>
{%- if not decorator.notYetDocumented %}{$ decorator.description | marked $}{% endif %}
{% endfor %}
2017-04-24 13:49:37 -04:00
</div>
{% endif %}