From 25735bbdc700b8f06f75a6ae3af33b068cbafa4c Mon Sep 17 00:00:00 2001 From: Fenris Wolf Date: Sun, 20 Jul 2025 16:58:30 +0000 Subject: [PATCH] [mod] readme --- readme.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/readme.md b/readme.md index 16e1b20..3d5be24 100644 --- a/readme.md +++ b/readme.md @@ -55,12 +55,16 @@ The same result can be produced by using multiple `coin` calls: ```sh 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: ```sh echo '<> are <>' | coin -o '<<' -c '>>' -a 'flowers:roses' -a 'color:red' + +# roses are red ```