I am writing a plugin to display information from jira tickets in a separate page. But the information returned from my jql rest call is displayed as a string, in the wikirendered format.
My question is:
How do I convert the wikirendered table (e.g. ||table header||table cell|) into html code?
Have you tried the expansion feature with the renderedFields option?
https://jira.atlassian.com/rest/api/latest/issue/JRA-9?expand=names,renderedFields
See: https://docs.atlassian.com/software/jira/docs/api/REST/7.8.1/
That didnt work for me, I ended up on making a second rest call to the /issue endpoint and followed this question:
This did work for me. Thanks for trying to help me.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I think there is a separate REST endpoint to do that rendering. Look through the REST API docs.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have only found the endpoint to only display rendered fields, but that still displays them in the rendered manner.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.