Merge pull request #16093 from crazy-max/fix-cli-desc

_includes/cli.md: do not escape flag descriptions
This commit is contained in:
CrazyMax 2023-02-03 16:17:33 +01:00 committed by GitHub
commit d96fd819f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ For example uses of this command, refer to the [examples section](#examples) bel
<td markdown="span">`--{{ option.option }}`{% if option.shorthand %} , `-{{ option.shorthand }}`{% endif %}</td>
{%- endif %}
<td markdown="span">{{ option-default }}</td>
<td markdown="span">{% if all-badges != '' %}{{ all-badges | strip }}<br />{% endif %}{{ option.description | strip | escape }}</td>
<td markdown="span">{% if all-badges != '' %}{{ all-badges | strip }}<br />{% endif %}{{ option.description | strip }}</td>
</tr>
{% endfor %} <!-- end for option -->
</tbody>