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 %}
 |