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
The filter parameter to GET /issues escapes all the list-items, leading to the markdown-rendering of the description yielding an "ascii" list rather than a proper list for the output format:
Indicates which sorts of issues to return. Can be one of:
* assigned: Issues assigned to you
* created: Issues created by you
* mentioned: Issues mentioning you
* subscribed: Issues you're subscribed to updates for
* all: All issues the authenticated user can see, regardless of participation or creation
Expected
Not escaping the list items, leading to the correct rendering:
Indicates which sorts of issues to return. Can be one of:
assigned: Issues assigned to you
created: Issues created by you
mentioned: Issues mentioning you
subscribed: Issues you're subscribed to updates for
all: All issues the authenticated user can see, regardless of participation or creation
The text was updated successfully, but these errors were encountered:
The
filter
parameter toGET /issues
escapes all the list-items, leading to the markdown-rendering of the description yielding an "ascii" list rather than a proper list for the output format:Expected
Not escaping the list items, leading to the correct rendering:
The text was updated successfully, but these errors were encountered: