build(docs-infra): improve directive selector rendering (#25768)
If the documentation contains a `@selectors` tag then the content of that is used to describe the selectors of a directive. Otherwise the selector string is split and each selector is listed as a list item in an unordered list. PR Close #25768
This commit is contained in:
parent
f22deb2e2d
commit
46729c76a0
|
@ -116,6 +116,15 @@
|
|||
.ngmodule-list {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
|
||||
.selector-list {
|
||||
ul {
|
||||
padding: 0;
|
||||
li {
|
||||
list-style: none;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
module.exports = function() {
|
||||
return {name: 'selectors'};
|
||||
};
|
|
@ -1,19 +1,14 @@
|
|||
{%- if doc.selector %}
|
||||
<section class="selectors">
|
||||
<section class="selector-list">
|
||||
<h2>Selectors</h2>
|
||||
<table class="is-full-width list-table selector-table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Selector</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{%- for selector in doc.selectorArray %}
|
||||
<tr class="selector">
|
||||
<td><code>{$ selector $}</code></td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
{% if doc.selectors %}
|
||||
{$ doc.selectors | marked $}
|
||||
{% else %}
|
||||
<ul>
|
||||
{%- for selector in doc.selectorArray %}
|
||||
<li><code>{$ selector $}</code></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endif %}
|
||||
</section>
|
||||
{% endif %}
|
||||
|
|
Loading…
Reference in New Issue