diff --git a/aio/tools/transforms/templates/cli/cli-command.template.html b/aio/tools/transforms/templates/cli/cli-command.template.html index 4d8364cd66..0b775a4b7d 100644 --- a/aio/tools/transforms/templates/cli/cli-command.template.html +++ b/aio/tools/transforms/templates/cli/cli-command.template.html @@ -12,9 +12,14 @@ {$ doc.shortDescription | marked $} {$ doc.description | marked $} {$ cli.renderSyntax(doc) $} + + {% if doc.longDescription.length %} +

Description

+ {$ doc.longDescription | marked $} + {% endif%} + {$ cli.renderArguments(doc.positionalOptions, 2) $} {$ cli.renderNamedOptions(doc.namedOptions, 2) $} {$ cli.renderSubcommands(doc) $} - {$ doc.longDescription | marked $}