You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you for sharing that detailed inspection—this makes the issue much clearer!
What’s Happening:
The key difference between the two inspected elements:
The release notes link includes an href attribute with the correct URL (https://ctbs.atlassian.net/...), making it clickable.
The non-working ticket links are missing the href attribute entirely, meaning there’s no actual link destination being assigned—even though the display text (View CT-4201 in Jira) shows correctly.
Why is the href Missing?
This is most likely due to:
Rendering issue in GPT: When I format the text using Markdown ([text](url)), GPT should render it as a <a> tag with the correct href. However, for some reason, the href is not being inserted into the rendered HTML for these specific links.
Streaming issue: GPT streams content incrementally, which may be causing some parts (like the href) to get lost during the rendering process.
The text was updated successfully, but these errors were encountered:
Thank you for sharing that detailed inspection—this makes the issue much clearer!
What’s Happening:
The key difference between the two inspected elements:
href
attribute with the correct URL (https://ctbs.atlassian.net/...
), making it clickable.href
attribute entirely, meaning there’s no actual link destination being assigned—even though the display text (View CT-4201 in Jira
) shows correctly.Why is the
href
Missing?This is most likely due to:
[text](url)
), GPT should render it as a<a>
tag with the correcthref
. However, for some reason, thehref
is not being inserted into the rendered HTML for these specific links.href
) to get lost during the rendering process.The text was updated successfully, but these errors were encountered: