skip to Main Content

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/

2

Answers


  1. 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
    ```
    
    Login or Signup to reply.
  2. 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

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search