mirror of https://github.com/SixLabors/ImageSharp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
550 B
19 lines
550 B
<if condition="fields.Count() > 0">
|
|
<h3 class="section">${title}</h3>
|
|
|
|
<div id="${field.Name}" class="method" each="var field in fields">
|
|
<h4>${h(field.ReturnType.PrettyName)} <strong>${h(field.Name)}</strong></h4>
|
|
<div class="content">
|
|
<comment content="field.Summary" />
|
|
<remarks content="field.Remarks" />
|
|
<table>
|
|
<tr>
|
|
<td>
|
|
<code>return ${Format(field.ReturnType)}</code>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<example content="field.Example" />
|
|
</div>
|
|
</div>
|
|
</if>
|