2018-10-17 08:49:28 -04:00
|
|
|
{% extends 'content.template.html' -%}
|
|
|
|
|
|
|
|
{% block content %}
|
2018-09-14 05:05:57 -04:00
|
|
|
<div class="content">
|
|
|
|
{$ doc.description | marked $}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<h2>Command Overview</h2>
|
|
|
|
<table class="is-full-width list-table property-table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Command</th>
|
|
|
|
<th>Alias</th>
|
|
|
|
<th>Description</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for command in doc.commands %}
|
|
|
|
<tr>
|
|
|
|
<td><a class="code-anchor" href="{$ command.path $}"><code>{$ command.name $}</code></a></td>
|
|
|
|
<td>{% for alias in command.commandAliases %}<code>{$ alias $} </code>{% endfor %}</td>
|
|
|
|
<td>{$ command.description | marked $}</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
2018-10-17 08:49:28 -04:00
|
|
|
</table>
|
|
|
|
{% endblock %}
|