We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am using the jira needservice to extract jira tickets. The content of some of the tickets contain links to other jira tickets in the Description.
Here is a raw unformatted link, after getting it from jira:
print(datum["fields"]["description"])
[https://idexasa.atlassian.net/browse/REQGP-999|https://idexasa.atlassian.net/browse/REQGP-999|smart-link]
Here is the link after converting from Jira format to markdown and from markdown to rst:
description_text = md_convert(jira_convert(datum["fields"]["description"])) print(description_text)
https://idexasa.atlassian.net/browse/REQGP-999<https://idexasa.atlassian.net/browse/REQGP-999|smart-link>_
https://idexasa.atlassian.net/browse/REQGP-999<https://idexasa.atlassian.net/browse/REQGP-999|smart-link>
However, the angle brackets are not escaped, so the rendered need look like this, and no longer functions as a clickable link:
https://idexasa.atlassian.net/browse/REQGP-999 <https://idexasa.atlassian.net/browse/REQGP-999|smart-link>_
https://idexasa.atlassian.net/browse/REQGP-999 <https://idexasa.atlassian.net/browse/REQGP-999|smart-link>
Is there a way to get the external links to render properly within a need?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am using the jira needservice to extract jira tickets. The content of some of the tickets contain links to other jira tickets in the Description.
Here is a raw unformatted link, after getting it from jira:
print(datum["fields"]["description"])
[https://idexasa.atlassian.net/browse/REQGP-999|https://idexasa.atlassian.net/browse/REQGP-999|smart-link]
Here is the link after converting from Jira format to markdown and from markdown to rst:
https://idexasa.atlassian.net/browse/REQGP-999<https://idexasa.atlassian.net/browse/REQGP-999|smart-link>
_However, the angle brackets are not escaped, so the rendered need look like this, and no longer functions as a clickable link:
https://idexasa.atlassian.net/browse/REQGP-999 <https://idexasa.atlassian.net/browse/REQGP-999|smart-link>
_Is there a way to get the external links to render properly within a need?
The text was updated successfully, but these errors were encountered: