From 471819f9346beb63d090afcd43951831c939868f Mon Sep 17 00:00:00 2001 From: Daniil Gentili Date: Fri, 22 Jan 2016 18:54:08 +0100 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 58660a5..7cb555d 100644 --- a/README.md +++ b/README.md @@ -130,7 +130,7 @@ To create interactive chats, write (or edit the question script) a normal bash ( The text that the script will output will be sent in real time to the user, and all user input will be sent to the script (as long as it's running or until the user kills it with /cancel). To open up a keyboard in an interactive script, print out the keyboard layout in the following way: ``` -echo "Text that will appear in chat? mykeyboardstartshere Yep No" +echo "Text that will appear in chat? mykeyboardstartshere \"Yep, sure\" \"No, highly unlikely\"" ``` Same goes for files: ``` @@ -142,7 +142,7 @@ echo "Text that will appear in chat. mylatstartshere 45 mylongstartshere 45" ``` You can combine them: ``` -echo "Text that will appear in chat? mykeyboardstartshere Yep No myfilelocationstartshere /home/user/doge.jpg mylatstartshere 45 mylongstartshere 45" +echo "Text that will appear in chat? mykeyboardstartshere \"Yep, sure\" \"No, highly unlikely\" myfilelocationstartshere /home/user/doge.jpg mylatstartshere 45 mylongstartshere 45" ```