我在哪里可以找到所有支持的电报降价功能的列表?

Where i can find a list of all supported markdown features for telegram?

我在电报中发现降价支持,目前无法在任何地方找到完整信息。

我可以看到 here 电报支持很多实体,但我找不到其中大部分的任何语法。实际上,默认的 url markdown 语法不起作用,所以我认为必须有不同的语法。还有很多,比如剧透或块引用,我找不到电报语法。我在哪里可以找到它的文档?

看看API formatting options。 有两种模式,传统模式:

*bold text*
_italic text_
[inline URL](http://www.example.com/)
[inline mention of a user](tg://user?id=123456789)
`inline fixed-width code`
```
pre-formatted fixed-width code block
```
```python
pre-formatted fixed-width code block written in the Python programming language
```

V2模式:

*bold \*text*
_italic \*text_
__underline__
~strikethrough~
||spoiler||
*bold _italic bold ~italic bold strikethrough ||italic bold strikethrough spoiler||~ __underline italic bold___ bold*
[inline URL](http://www.example.com/)
[inline mention of a user](tg://user?id=123456789)
`inline fixed-width code`
```
pre-formatted fixed-width code block
```
```python
pre-formatted fixed-width code block written in the Python programming language
```