在Telegram bot中使用HTML

时间:2018-04-07 09:49:49

标签: c# telegram-bot

这不是一个重复的问题。 我想在我的电报机器人中使用由c#编写的html代码。我在SO搜索,但我没有找到任何答案。怎么做? 我用过TelegramBotSharp。 这是我的代码与我解释的部分有关:

MessageTarget target = (MessageTarget)update.Chat ?? update.From;     
if(Text.StartsWith("Hello")) {
    bot.SendMessage(target, "Hello <a href='http://google.com'> dear</a>", true);
}

3 个答案:

答案 0 :(得分:4)

Use the following syntax in your message:

*bold text*

_italic text_

[inline URL](http://www.example.com/)

[inline mention of a user](tg://user?id=123456789)

pre-formatted fixed-width code block

注意: 目前仅支持上述标签。

标签不得嵌套。

全部&lt;,&gt;和&amp;不属于标记或HTML实体的符号必须替换为相应的HTML实体(< with &lt;, > with &gt; and & with &amp;).

支持所有数字HTML实体。

API目前仅支持以下命名的HTML实体:&lt;, &gt;, &amp; and &quot;.

答案 1 :(得分:1)

HTML mode

使用HTML时,在parse_mode字段中传递sendMessage

答案 2 :(得分:0)

如果您需要使用html进行格式化,则需要将“ parse_mode”设置为“ html”;

https://api.telegram.org/bot1328912345:BBCCDDExVAKD2GOEA1mXWfXfhQ_z8Y6rRh8/sendmessage?chat_id=12345678&amp;text=Sample message&amp;parse_mode=html)

到目前为止,Bot仅支持以下标记:

<b>bold</b>, <strong>bold</strong>
<i>italic</i>, <em>italic</em>
<u>underline</u>, <ins>underline</ins>
<s>strikethrough</s>, <strike>strikethrough</strike>, <del>strikethrough</del>
<b>bold <i>italic bold <s>italic bold strikethrough</s> <u>underline italic bold</u></i> bold</b>
<a href="http://www.example.com/">inline URL</a>
<a href="tg://user?id=123456789">inline mention of a user</a>
<code>inline fixed-width code</code>
<pre>pre-formatted fixed-width code block</pre>
<pre><code class="language-python">pre-formatted fixed-width code block written in the Python programming language</code></pre>

来源:https://core.telegram.org/bots/api#formatting-options