diff --git a/README.md b/README.md index 9acd7202..24991f69 100644 --- a/README.md +++ b/README.md @@ -264,11 +264,14 @@ Remember that a classical [finite automaton](https://en.wikipedia.org/wiki/Finit See [examples/dialogue_bot](https://github.com/teloxide/teloxide/blob/master/examples/dialogue_bot/src/main.rs) to see a bit more complicated bot with dialogues. ## More examples! - - [ping_pong_bot](ping_pong_bot) - Answers "pong" to each incoming message. - - [simple_commands_bot](simple_commands_bot) - Shows how to deal with bot's commands. - - [guess_a_number_bot](guess_a_number_bot) - The "guess a number" game. - - [dialogue_bot](dialogue_bot) - Drive a dialogue with a user using a type-safe finite automaton. - - [admin_bot](admin_bot) - A bot, which can ban, kick, and mute on a command. +| Bot | Description | +| --- | ----------- | +| [ping_pong_bot](https://github.com/teloxide/teloxide/tree/master/examples/ping_pong_bot) | Answers "pong" to each incoming message. | +| [simple_commands_bot](https://github.com/teloxide/teloxide/tree/master/examples/simple_commands_bot) | Shows how to deal with bot's commands. | +| [guess_a_number_bot](https://github.com/teloxide/teloxide/tree/master/examples/guess_a_number_bot) | The "guess a number" game. | +| [dialogue_bot](https://github.com/teloxide/teloxide/tree/master/examples/dialogue_bot) | Drive a dialogue with a user using a type-safe finite automaton. | +| [admin_bot](https://github.com/teloxide/teloxide/tree/master/examples/admin_bot) | A bot, which can ban, kick, and mute on a command. | + ## Recommendations - Use this pattern: