2018-09-14 09:05:57 +00:00
|
|
|
{% import 'lib/cli.html' as cli %}
|
2018-10-17 14:45:47 +00:00
|
|
|
{% import "../lib/githubLinks.html" as github -%}
|
2018-09-14 09:05:57 +00:00
|
|
|
|
|
|
|
|
<article>
|
|
|
|
|
{% include 'include/cli-breadcrumb.html' %}
|
|
|
|
|
{% include 'include/cli-header.html' %}
|
|
|
|
|
|
|
|
|
|
<aio-toc class="embedded"></aio-toc>
|
|
|
|
|
|
|
|
|
|
<div class="cli-body">
|
|
|
|
|
{$ doc.shortDescription | marked $}
|
|
|
|
|
{$ cli.renderSyntax(doc) $}
|
2018-10-19 07:28:08 +00:00
|
|
|
|
|
|
|
|
{% if doc.longDescription.length %}
|
2019-06-06 08:45:07 +00:00
|
|
|
<h2 class="no-anchor">
|
|
|
|
|
{$ github.githubLinks(doc.longDescriptionDoc, cliVersionInfo) $}
|
|
|
|
|
Description
|
|
|
|
|
</h2>
|
2018-10-19 07:28:08 +00:00
|
|
|
{$ doc.longDescription | marked $}
|
|
|
|
|
{% endif%}
|
|
|
|
|
|
2022-03-02 08:49:57 +00:00
|
|
|
{% if doc.subcommands.length %}
|
2022-10-27 11:44:10 +00:00
|
|
|
<p>This command has the following <a href="#{$ doc.name $}-commands">sub-commands</a>:<p>
|
2022-03-02 08:49:57 +00:00
|
|
|
<ul>
|
|
|
|
|
{% for subcommand in doc.subcommands %}
|
2022-03-15 06:44:55 +00:00
|
|
|
<li><a class="code-anchor" href="#{$ subcommand.name $}-command">{$ subcommand.name $}</a></li>
|
2022-03-02 08:49:57 +00:00
|
|
|
{% endfor %}
|
|
|
|
|
</ul>
|
|
|
|
|
{% endif %}
|
|
|
|
|
|
2018-09-14 09:05:57 +00:00
|
|
|
{$ cli.renderArguments(doc.positionalOptions, 2) $}
|
|
|
|
|
{$ cli.renderNamedOptions(doc.namedOptions, 2) $}
|
|
|
|
|
{$ cli.renderSubcommands(doc) $}
|
|
|
|
|
</div>
|
|
|
|
|
</article>
|