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

2

17

I need to format my text in telegram. I try to use markdown language for the following text:

* Item
* Item

It prints the text as it is. It is supposed to print bullets instead.

I am following this link: https://wordpress.com/support/markdown-quick-reference/

Vienna answered 22/5, 2020 at 14:24 Comment(0)
K
14

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

Kooky answered 23/6, 2021 at 14:20 Comment(2)
Tip: If you put two spaces behind each point, StackOverflow won't put them in one line and make a nice list insteadMeagan
actually I had to put space after each line, but it totally worked, thanks!Kooky
T
8

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
```
Tyus answered 22/5, 2020 at 17:46 Comment(1)
Thanks for your answer. I've used circle bullets for my lists -( • •)Zippy

© 2022 - 2024 — McMap. All rights reserved.