Changed description from h3 to h2 to match the other header Created api page classes for consistent styling Add styles for info-bar section Wrapped pre tags for code not to go off of screen
16 lines
501 B
HTML
16 lines
501 B
HTML
{% if doc.inputs %}
|
|
<section class="inputs api-section">
|
|
<div class="api-section-header">
|
|
<h2>Inputs</h2>
|
|
</div>
|
|
<div class="api-section-content">
|
|
{% for binding, property in doc.inputs %}
|
|
<div class="input">
|
|
<code>{$ property.bindingName $}</code> bound to <code>{$ property.memberDoc.classDoc.name $}.{$ property.propertyName $}</code>
|
|
{$ property.memberDoc.description | trimBlankLines | marked $}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</section>
|
|
{% endif %}
|