Bulk change: move double quotes outside tokens (#4431)

This commit is contained in:
Guido Lena Cota
2020-10-04 19:33:38 +02:00
committed by GitHub
parent cfe462c57f
commit 354d4b8748
59 changed files with 118 additions and 118 deletions

View File

@@ -4,7 +4,7 @@
- Say a phrase aloud:
`say {{"I like to ride my bike."}}`
`say "{{I like to ride my bike.}}"`
- Read a file aloud:
@@ -12,7 +12,7 @@
- Say a phrase with a custom voice and speech rate:
`say -v {{voice}} -r {{words_per_minute}} {{"I'm sorry Dave, I can't let you do that."}}`
`say -v {{voice}} -r {{words_per_minute}} "{{I'm sorry Dave, I can't let you do that.}}"`
- List the available voices:
@@ -20,4 +20,4 @@
- Create an audio file of the spoken text:
`say -o {{filename.aiff}} {{"Here's to the Crazy Ones."}}`
`say -o {{filename.aiff}} "{{Here's to the Crazy Ones.}}"`