-
Type:
Bug
-
Resolution: Timed out
-
Priority:
Low
-
Component/s: Issue - Backend
-
1
-
Severity 3 - Minor
Issue Summary
When creating or editing a paragraph field REST API v2 (creating/updating issues or comments using wiki markup), it fails to recognize the line break ("\n" or "\ \" - double back slashes) defining the end of the list and treating the table formatting as literal characters.
Steps to Reproduce
Sample body
{
"fields": {
"description": "# Numbered list\n# With {color:#02CC00}color{color} formatting\n\n||Heading 1||Heading 2||\n|col 1|col 2|"
}
}
- Create/edit a paragraph field using the sample body above using REST API v2
- Reload the page
Expected Results
A numbered list with color formatting and a table are defined in the description:
Actual Results
The table formatting is ignored and the line break from the list is skipped:
Workaround
Either remove the list (# or *) or color formatting.