We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ce650de + fcaa605 commit e77e9eeCopy full SHA for e77e9ee
src/aaz_dev/command/templates/group.md.j2
@@ -11,7 +11,7 @@
11
{%- for _, sub_group in group.command_groups.items()|sort(attribute='0') %}
12
13
- [{{ sub_group.names|last }}]({{ sub_group.names|command_group_readme_path }})
14
-: {{ sub_group.help.short }}
+: {{ sub_group.help.short | replace('\n', '\\n') }}
15
{%- endfor %}
16
{%- endif %}
17
{%- if group.commands is not none and group.commands|length %}
@@ -20,7 +20,7 @@
20
{%- for _, command in group.commands.items()|sort(attribute='0') %}
21
22
- [{{ command.names|last }}]({{ command.names|command_readme_path }})
23
-: {{ command.help.short }}
+: {{ command.help.short | replace('\n', '\\n') }}
24
25
26
{{ "" }}
0 commit comments