Much of the formatting was hardcoded and copied from the old anguar.io jade files. This gives us a clean start. Also, more use has been made of include files to make the templates easier to understand and manage.
14 lines
436 B
HTML
14 lines
436 B
HTML
{% if doc.outputs %}
|
|
<section class="outputs">
|
|
<h2>Outputs</h2>
|
|
<div class="description">
|
|
{% for binding, property in doc.outputs %}
|
|
<div class="output">
|
|
<code>{$ property.bindingName $}</code> bound to <code>{$ property.memberDoc.classDoc.name $}.{$ property.propertyName $}</code>
|
|
{$ property.memberDoc.description | trimBlankLines | marked $}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</section>
|
|
{% endif %}
|