我正在使用 ASP.Net 的内置类为网站创建 XML 提要。这是我的代码,
SyndicationFeed myFeed = new SyndicationFeed();
myFeed.Title = TextSyndicationContent.CreatePlaintextContent
("XYZ - In the first line <br/> in the second line");
渲染时,它按原样显示 -
XYZ - In the first line <br/> in the second line
而我想要它
XYZ - In the first line
in the second line
我看到该行为仅适用于 myFeed.Title,而在 myFeed.Description 中,我可以使用任何 HTML 标记。
有什么方法可以让 HTML 标签与 Titles 一起使用?