[mod] readme

This commit is contained in:
fenris 2025-07-20 16:58:30 +00:00
parent ac1866fe9e
commit 25735bbdc7

View file

@ -55,12 +55,16 @@ The same result can be produced by using multiple `coin` calls:
```sh ```sh
echo '{{flowers}} are {{color}}' | coin -a 'flowers:roses' | coin -a 'color:red' 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 might be reserved or not available for other reasons. This can be mitigated by using different placeholder indicators:
```sh ```sh
echo '<<flowers>> are <<color>>' | coin -o '<<' -c '>>' -a 'flowers:roses' -a 'color:red' echo '<<flowers>> are <<color>>' | coin -o '<<' -c '>>' -a 'flowers:roses' -a 'color:red'
# roses are red
``` ```