我正在编写一些在测试窗口中正确显示的简单降价,但是当它在 Facebook Messenger 中呈现时没有呈现。
这是在信使中显示的纯文本而不是标题文本
# This Is The Heading #
这就是在信使中为粗体文本显示的纯文本
*Bold Stuff*
这是我正在使用的代码。正如我所说,它在测试窗口中运行良好。
StringBuilder sb = new StringBuilder();
sb.AppendLine("# This Is The Heading \n\n");
sb.AppendLine("Some text \n\n");
sb.AppendLine("**Bold Stuff** \n\n");
sb.AppendLine("more text \n\n");
IMessageActivity reply = context.MakeMessage();
reply.Text = sb.ToString();
context.PostAsync(reply);