angular/aio/tools/transforms/templates/api/block.template.html
Jeremy Elbourn a49ee46dae docs(docs-infra): add support for block syntax to dgeni (#52123)
This adds the new block syntax to dgeni docs pipeline, mainly copying
the way that elements (`<ng-content>` etc.) work. Actual doc content is
just a placeholder for this PR.

PR Close #52123
2023-10-10 13:55:04 -07:00

13 lines
247 B
HTML

{% extends 'export-base.template.html' -%}
{% block overview %}
{% if doc.syntax %}
<h2>Syntax</h2>
{$ doc.syntax | marked $}
{% endif %}
{% endblock %}
{% block details %}
{% include "includes/description.html" %}
{% endblock %}