angular-cn/aio/tools/transforms/templates/api/includes/selectors.html

11 lines
224 B
HTML
Raw Normal View History

2017-06-29 17:23:27 -04:00
{%- if doc.selector %}
<section class="selectors">
2017-04-24 13:49:37 -04:00
<h2>Selectors</h2>
2017-06-29 17:23:27 -04:00
{% for selector in doc.selector.split(',') %}
<div class="selector">
2017-04-24 13:49:37 -04:00
<code>{$ selector $}</code>
</div>
2017-04-24 13:49:37 -04:00
{% endfor %}
</section>
{% endif %}