From 915eba4b14f5126af81f5c32591af02f602aad52 Mon Sep 17 00:00:00 2001 From: Abinash Mohanty Date: Fri, 9 Dec 2016 16:50:09 +0530 Subject: [PATCH] Highlighted "default" as part of the actions It's intuitive to highlight keywords `default` and `next_step` as part of the Actions as documented under convo threads. --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index f13a4ea83..a278476bf 100755 --- a/readme.md +++ b/readme.md @@ -699,7 +699,7 @@ convo.addMessage({ ``` Developers can create fairly complex conversational systems by combining these message actions with conditionals in `ask()` and `addQuestion()`. Actions can be used to specify -default or next step actions, while conditionals can be used to route between threads. +`default` or `next_step` actions, while conditionals can be used to route between threads. From inside a callback function, use `convo.gotoThread()` to instantly switch to a different pre-defined part of the conversation. Botkit can be set to automatically navigate between threads based on user input, such as in the example below.