从 Bugtracker 迁移到 Atlassian JIRA(Html 标签)
我正在尝试使用 C# 和 te Soap 客户端界面将一些 bugtracker 数据迁移到 jira。到目前为止,实现得很好,但我需要解析一些 html 信息到 wiki confluence(我猜这就是 jira 使用的)。我确实知道 wiki 不支持断线,但在以下示例中。我如何将此文本解析为正确的 wiki 风格。 (
<h1>This is a text</h1><p> Hello World Luis Mayorga </p><br />
)。除非有我可以在此 C# 迁移工具上使用的库或外部代码。
content = content.Replace("<br />", "\\");
content = Regex.Replace(content, "<p>(.*?)</p>", "$1");
content = Regex.Replace(content, "<h1>(.*?)</h1>", "h1. $1");
任何帮助
I am trying to migrate some bugtracker data to jira using C# and te soap client interface. So far so good with the implementation but i need to parse some html information to wiki confluence(I guess that is what jira uses). I do understand that wiki does not support break lines but on the following example. how do I parse this text to a proper wiki style. (
<h1>This is a text</h1><p> Hello World Luis Mayorga </p><br />
). Unless there is a library or external code that i can use on this C# migration tool.
content = content.Replace("<br />", "\\");
content = Regex.Replace(content, "<p>(.*?)</p>", "$1");
content = Regex.Replace(content, "<h1>(.*?)</h1>", "h1. $1");
Any Help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论