In telegram i want bullet points , numbering and indentations but its not working

Viewed 9088
2 Answers

Telegram's versions of MarkDown: Markdown & Markdown v2 don't support any sort of lists.

The only way to achieve this is using the pre-formatted code block with a 'custom' list which will allow any sort of indentation:

```
1) Item - 1
2) Item - 2
    A) Sub-Item - 1
```

This will not help you with indentations but will make nicely looking bullet points. Just copy and paste the bullet point UTF-8 character at the beginning of each line.

• first point
• second point
• etc

screenshot from telegram

Related