Is it possible to format a message sent by a telegram bot as a list?
I want to build a bot that presents the menu of a restaurant with about 20 options and sub-options (e.g., kind of meat) as a list:
- Spaghetti
* Carbonara
* Bolognese
- Ice Cream
* additional chocolate sprinkles
I noticed that neither <ul>
or <ol>
work in parse_mode="HTML"
and I also couldn't find any syntax in parse_mode="MarkdownV2"
. From what I see in the documentation it is currently not possible. In a similar question on tables, ASCII text and pictures were recommended. The only other option I see is inline keyboards. None of these would work well with what I had in mind.
Does someone have a workaround for this? Or can confirm that it is indeed not possible?