Skip to content

Commit

Permalink
improve readability
Browse files Browse the repository at this point in the history
  • Loading branch information
wiz0u committed Jul 14, 2024
1 parent 423e943 commit dbed18d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
10 changes: 2 additions & 8 deletions src/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,8 @@

**[Telegram.Bot](https://github.com/TelegramBots/Telegram.Bot)** is the most popular .NET client for [Telegram Bot API](https://core.telegram.org/bots/api), allowing [developers to build bots](https://core.telegram.org/bots) for [Telegram](https://www.telegram.org) messaging app.

Telegram Bot API is [officially documented](https://core.telegram.org/bots/api) but this book covers all you need to know to create a
chatbot in .NET. There are also many concrete examples written in C#.
The guides here can even be useful to bot developers using other languages/platforms as it shows best practices
in developing Telegram chatbots with examples.

➡️ Access the book pages via the Table Of Content (top/left), or start your journey with our [_Quickstart_](1/quickstart.md) guide.

Also don't miss our [Frequently Asked Questions](FAQ.md) which answers a lot of issues.
This book covers all you need to know to create a chatbot in .NET, with many concrete examples written in C#.
Begin with our [_Quickstart_](1/quickstart.md), or choose from the Table Of Content (left/top), and don't miss our useful [Frequently Asked Questions](FAQ.md).

## 🧩 Installation

Expand Down
10 changes: 10 additions & 0 deletions theme/custom.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
:root {
--content-max-width: 900px;
}

/* mdbook margins are way too big */
h2, h3 {
margin-block-start: 1em;
margin-block-end: 0.5em;
}
h4, h5 {
margin-block-start: 0.8em;
margin-block-end: 0.4em;
}

0 comments on commit dbed18d

Please sign in to comment.