2018-10-17 12:49:28 +00:00
|
|
|
{% extends 'content.template.html' -%}
|
|
|
|
|
|
|
|
|
|
{% block content %}
|
2018-09-14 09:05:57 +00: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>
|
2018-10-23 10:10:59 +00:00
|
|
|
<td><a class="code-anchor" href="{$ command.path $}"><code class="no-auto-link">{$ command.name $}</code></a></td>
|
|
|
|
|
<td>{% for alias in command.commandAliases %}<code class="no-auto-link">{$ alias $} </code>{% endfor %}</td>
|
2022-06-25 14:59:20 +00:00
|
|
|
<td>{$ command.shortDescription | marked $}</td>
|
2018-09-14 09:05:57 +00:00
|
|
|
</tr>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</tbody>
|
2018-10-17 12:49:28 +00:00
|
|
|
</table>
|
|
|
|
|
{% endblock %}
|