From b422935175358292f28aad4fffacd67231ffb7d5 Mon Sep 17 00:00:00 2001 From: Fenris Wolf Date: Mon, 22 Sep 2025 21:01:17 +0200 Subject: [PATCH] [mod] readme --- readme.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 3d5be24..0445c1b 100644 --- a/readme.md +++ b/readme.md @@ -1,5 +1,6 @@ # coin + ## Description `coin` transforms a template string to its refined version by substituting its placeholders with concrete values; hence it can be used as a very basic template engine. @@ -59,7 +60,7 @@ echo '{{flowers}} are {{color}}' | coin -a 'flowers:roses' | coin -a 'color:red' # roses are red ``` -In some contextes curly brackets might might be reserved or not available for other reasons. This can be mitigated by using different placeholder indicators: +In some contextes curly brackets might be reserved or not available for other reasons. This can be mitigated by using different placeholder indicators: ```sh echo '<> are <>' | coin -o '<<' -c '>>' -a 'flowers:roses' -a 'color:red'