angular-cn/aio/tools/transforms/templates/api/export-base.template.html
Pete Bacon Darwin 62aca30286 feat(docs-infra): add support for "special elements" (#41299)
This commit adds support for generating pages that document
special Angular elements, such as `ng-content` and `ng-template`,
which have special behavior in Angular but are not directives nor
components.

Resolves #41273

PR Close #41299
2021-06-16 14:01:16 -07:00

15 lines
569 B
HTML

{% extends 'base.template.html' -%}
{% block body %}
<section class="short-description">{% block shortDescription %}
{$ doc.shortDescription | marked $}
{% if doc.description %}<p><a href="#description">See more...</a></p>{% endif %}
{% endblock %}</section>
{% include "includes/security-notes.html" %}
{% include "includes/deprecation.html" %}
{% block overview %}{% endblock %}
{% include "includes/see-also.html" %}
{% block details %}{% endblock %}
{% block endNotes %}{% include "includes/usageNotes.html" %}{% endblock %}
{% endblock %}