Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Telegram markdown syntax: Bold *and* italic? (September 2018)

By looking at Telegram’s “Markdown Syntax” Wiki page, it should be relatively easy to create text that is bold and italic.

There, it says that

*this is in italic* and _so is this_  **this is in bold** and __so is this__  ***this is bold and italic*** and ___so is this___ 

results in

this is in italic and so is this

this is in bold and so is this

this is bold and italic and so is this

.

But using

***this is bold and italic*** 

results in

*this is bold an italic*

and

___this is bold and italic___ 

results in

_this is bold an italic_

.

That is: Telegram’s markdown interpretation must have changed.

When programming a Telegram bot, it is possible to use HTML instead of markdown, but I would like to simply write some bold and italic text to my friends while regularly chatting with them.

Using the markdown syntax that is used here does not work. I already tried it.

like image 858
Nemgathos Avatar asked Sep 25 '18 10:09

Nemgathos


People also ask

How do you bold and italicize in Telegram?

Telegram for iOS and Android: How to format your text For all options, launch the context menu (the three-dot icon on the right or top right on Android). Choose from the options Bold, Italic, Mono, Strikeout, Underline, Create Link, and Normal.

How do you bold and italicize in markdown?

Bold & Italics: Simply enclose the text between double asterisk ( **text** ) or two underscores ( __text__ ) to bold text. To italicise text, use single asterisks ( *text* ) or underscores ( _text_ ) before and after the text. I **love** _writing_ in __Markdown__. The word 'love' and 'Markdown' will show up as bold.

How can I use markdown in Telegram?

Select and right click on the text you want to format and then select "transfrom". Iphone and Android: Hold the finger in on the text you want to format to select it and you will find the formatting options there int the context menu. Xiaomi and other non supported "context menu" devices: You can still get it working!


1 Answers

That Wiki page is outdated. Telegram accepts standard Markdown text formatting:

  • Bold: Double * = **hello world**
  • Italic: Double _ = __hello world__
  • Monospace: Triple ` = ```hello world```
like image 98
ragip Avatar answered Sep 23 '22 23:09

ragip