angular/aio/tools/transforms/templates/api/includes/see-also.html

10 lines
193 B
HTML
Raw Normal View History

{%- if doc.see.length %}
<section class="see-also">
<h2>See also</h2>
<ul>
{%- for see in doc.see %}
<li>{$ see | marked | trim $}</li>{% endfor %}
</ul>
</section>
{%- endif -%}