Skip to content

Commit 3aafc48

Browse files
committed
feat: special characters not displayed correctly in cli
1 parent a495a1d commit 3aafc48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/cli/app/services/help.php.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ printf("\nUsage : appwrite [SERVICE] [COMMAND] --[OPTION]\n\n");
1616
printf("Services :\n");
1717
$mask = "\t%-20.20s %-125.125s\n";
1818
{% for service in spec.services %}
19-
printf($mask, "{{ service.name }}", "{{ service.description }}");
19+
printf($mask, "{{ service.name }}", "{{ service.description | replace({'"':'\''}) | raw }}");
2020
{% endfor %}
2121
printf("\nRun 'appwrite [SERVICE] help' for more information on a service.\n");

0 commit comments

Comments
 (0)