If I call the /issue REST endpoint and include expand=renderedFields, I can get the issue description as html in the response. The call is like this:
/rest/api/3/issue/AIRIN-1?expand=renderedFields
I can't seem to do the same with the /project REST endpoint. I'd like to get project description rendered as html, since it may include markup. I tried this:
/rest/api/3/project/AIRIN?expand=renderedFields
But the response only included the project description "markup" that was originally entered, like this:
"description":"This is a *project* for _inspecting airports_."
Is there a way to get the project description in html format?