从 Bugtracker 迁移到 Atlassian JIRA(Html 标签)

发布于 2024-12-06 05:42:48 字数 577 浏览 0 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文