Plugin mistune for converting Markdown into Telegram format.
Markdown element | Telegram Markdown | Telegram Markdown V2 | Telegram HTML |
---|---|---|---|
Headings | ✅ | ✅ | ✅ |
Paragraphs | ✅ | ✅ | ✅ |
Line Breaks | ✅ | ✅ | ✅ |
Bold | ✅ | ✅ | ✅ |
Italic | ✅ | ✅ | ✅ |
Blockquotes | ❌ | ❌ | ❌ |
Lists | ❌ | ❌ | ✅ |
Code | ✅ | ✅ | ✅ |
Code blocks | ✅ | ✅ | ✅ |
Horizontal rules | ❌ | ❌ | ❌ |
Links | ✅ | ✅ | ✅ |
Images | ❌ | ❌ | ❌ |
$ pip install mistune-telegram
Or use your python package manager.
Markdown style example:
import mistune
from mistune_telegram import TelegramMarkdownRenderer
telegram_style = mistune.create_markdown(renderer=TelegramMarkdownRenderer())
print(telegram_style(
"""
# Heading level 1
## Heading level 2
### Heading level 3
#### Heading level 4
##### Heading level 5
###### Heading level 6
Heading level 1
===============
Heading level 2
---------------
First paragraph.
Second paragraph.
First line.
Second line.
**bold**
__bold__
*italic*
_italic_
`code`
```
code blocks
```
```python
code blocks written in the Python programming language
```
[link](http://www.example.com/)
"""))
Output:
*Heading level 1*
*Heading level 2*
*Heading level 3*
*Heading level 4*
*Heading level 5*
*Heading level 6*
*Heading level 1*
*Heading level 2*
First paragraph.
Second paragraph.
First line.
Second line.
*bold*
*bold*
_italic_
_italic_
`code`
```
code blocks
```
```python
code blocks written in the Python programming language
```
[link](http://www.example.com/)
MarkdownV2 style example:
import mistune
from mistune.plugins.formatting import strikethrough
from mistune_telegram import TelegramMarkdownV2Renderer
telegram_style = mistune.create_markdown(renderer=TelegramMarkdownV2Renderer(), plugins=[strikethrough])
print(telegram_style(
"""
# Heading level 1
## Heading level 2
### Heading level 3
#### Heading level 4
##### Heading level 5
###### Heading level 6
Heading level 1
===============
Heading level 2
---------------
First paragraph.
Second paragraph.
First line.
Second line.
**bold**
__bold__
*italic*
_italic_
`code`
```
code blocks
```
```python
code blocks written in the Python programming language
```
[link](http://www.example.com/)
~~strikethrough~~
"""))
Output:
*Heading level 1*
*Heading level 2*
*Heading level 3*
*Heading level 4*
*Heading level 5*
*Heading level 6*
*Heading level 1*
*Heading level 2*
First paragraph.
Second paragraph.
First line.
Second line.
*bold*
*bold*
_italic_
_italic_
`code`
```
code blocks
```
```python
code blocks written in the Python programming language
```
[link](http://www.example.com/)
~strikethrough~
HTML style example:
import mistune
from mistune.plugins.formatting import strikethrough
from mistune_telegram import TelegramHTMLRenderer
telegram_style = mistune.create_markdown(renderer=TelegramHTMLRenderer(), plugins=[strikethrough])
print(telegram_style(
"""
# Heading level 1
## Heading level 2
### Heading level 3
#### Heading level 4
##### Heading level 5
###### Heading level 6
Heading level 1
===============
Heading level 2
---------------
First paragraph.
Second paragraph.
First line.
Second line.
**bold**
__bold__
*italic*
_italic_
1. First item
2. Second item
- First item
- Second item
* First item
* Second item
`code`
```
code blocks
```
```python
code blocks written in the Python programming language
```
[link](http://www.example.com/)
~~strikethrough~~
"""))
Output:
<strong>Heading level 1</strong>
<strong>Heading level 2</strong>
<strong>Heading level 3</strong>
<strong>Heading level 4</strong>
<strong>Heading level 5</strong>
<strong>Heading level 6</strong>
<strong>Heading level 1</strong>
<strong>Heading level 2</strong>
First paragraph.
Second paragraph.
First line.
Second line.
<strong>bold</strong>
<strong>bold</strong>
<em>italic</em>
<em>italic</em>
- First item
- Second item
- First item
- Second item
- First item
- Second item
<code>code</code>
<pre>code blocks
</pre>
<pre><code class="language-python">code blocks written in the Python programming language
</code></pre>
<a href="http://www.example.com/">link</a>
<del>strikethrough</del>