用于 C# .NET SyndicateFeed 的 XSLT 到 XHTML
我正在使用 .NET SyndicateFeed 类创建供使用的 RSS 提要,但我需要将 XSLT 样式表链接到生成的 XML,以设置 Web 浏览器结果的样式。我还没有找到一种简单的方法来做到这一点。
我最好的选择是在生成 feed 后自己将 标签插入到生成的 XML 中,还是有更优雅的解决方案?
预先感谢,我非常感谢您的帮助。除了我自己直接修改生成的 XML 之外,我还无法找出或找到更好的解决方案。
I am using the .NET SyndicationFeed class to create an RSS feed for consumption, but I need to link an XSLT style sheet to the resulting XML to style the results for web browsers. I haven't been able to find an easy way of doing this.
Is my best bet to insert the <?xml-stylesheet ... ?>
tag into the resulting XML myself after the feed has been generated, or is there a more elegant solution?
Thanks in advance, I really appreciate the help. I haven't been able to figure out or find a better solution save for directly modifying the resulting XML myself.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
嗯,我没有看到将
xml-stylesheet
处理指令写入到您编写 SyndicateFeed 的同一个 XmlWriter 中的任何问题,例如示例代码写入
控制台,并且与写入到任何目标的方式相同XmlWriter 可以写入。
Well I don't see any problems writing out the
xml-stylesheet
processing instruction to the same XmlWriter you write the SyndicationFeed to e.g. the sample codewrites
to the console and the same way you could write to any destination an XmlWriter can write to.