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 ```