From a02f499a206f503f2d92bb814d57f46208761f5f Mon Sep 17 00:00:00 2001 From: daveusa31 <41593484+daveusa31@users.noreply.github.com> Date: Sat, 18 Jul 2020 19:02:07 +0300 Subject: [PATCH] Documented the default parse_mode installation --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fa33553..b106d1d 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,7 @@ Then, open the file and create an instance of the TeleBot class. ```python import telebot -bot = telebot.TeleBot("TOKEN") +bot = telebot.TeleBot("TOKEN", parse_mode=None) # You can set parse_mode by default. HTML or MARKDOWN ``` *Note: Make sure to actually replace TOKEN with your own API token.*