0
我正在寫一些簡單的markdown,它在測試窗口中正確顯示,但在Facebook Messenger中呈現時沒有渲染。Markdown not render in messenger
這就是顯示純文本的使者,而不是標題文本
# This Is The Heading #
而這就是顯示在信使純文本中的粗體文字
*Bold Stuff*
這是代碼我正在使用。正如我所說的,它在測試窗口中工作正常。從craigjensen
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);