gifsicle: add {{}} around tokens

waldyrious/alt-syntax
Romain Prieto 2014-02-20 23:01:42 +11:00
parent 3560bdb7c1
commit a6c0586382
1 changed files with 6 additions and 6 deletions

View File

@ -2,14 +2,14 @@
> Create gifs
- Making a GIF animation with gifsicle is easy:
- Making a GIF animation with gifsicle
`gifsicle --delay=10 --loop *.gif > anim.gif`
`gifsicle --delay={{10}} --loop *.gif > {{anim.gif}}`
- Extracting frames from animations is easy too:
- Extracting frames from an animation
`gifsicle anim.gif '#0' > firstframe.gif`
`gifsicle {{anim.gif}} '#0' > {{firstframe.gif}}`
- You can also edit animations by replacing, deleting, or inserting frames:
- You can also edit animations by replacing, deleting, or inserting frames
`gifsicle -b anim.gif --replace '#0' new.gif`
`gifsicle -b {{anim.gif}} --replace '#0' {{new.gif}}`