Skip to content

Instantly share code, notes, and snippets.

@zHaytam
Created October 19, 2020 20:38
Show Gist options
  • Save zHaytam/b11637265c9fa121a53fce99215ddbf5 to your computer and use it in GitHub Desktop.
Save zHaytam/b11637265c9fa121a53fce99215ddbf5 to your computer and use it in GitHub Desktop.
<div class="table-responsive">
<table class="table">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th>Default</th>
<th>Description</th>
</tr>
</thead>
<tbody>
@foreach (var possibleOption in ReflectionUtils.ExtractPossibleOptions<DiagramOptions>())
{
<tr>
<th>@possibleOption.Name</th>
<td>@possibleOption.Type</td>
<td>@possibleOption.Default</td>
<td>@possibleOption.Description</td>
</tr>
}
</tbody>
</table>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment