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
Once a list has been started, the next paragraphs and lines are always a list
The first non-list item becomes part of the previous list and the all subsequent lines are list items.
List items are each their own list
Using the following markdown as test input:
**This is the first list:**- bullet line one
- not indented line
**the 2nd list**- 2nd list, 1st item
- 2nd list, 2nd item
In the output JSON, notice the following:
The items of each of the lists are treated as two separate bullestLists even though they should be part of the content of the same one.
Just so happens to get visually rendered as one bullet list on Atlassian.
Despite having two empty lines (so 3 consecutive newlines \n's), the 2nd paragraph header gets added as list item for the first list, instead of being on its own after an to the first list.
All subsequent lines after a bullet list has started become part of the list, even if not prefixed with a -. Or they become content of the last element given as a list
Summary:
Using the following markdown as test input:
In the output JSON, notice the following:
bullestList
s even though they should be part of the content of the same one.\n
's), the 2nd paragraph header gets added as list item for the first list, instead of being on its own after an to the first list.-
. Or they become content of the last element given as a listIt should be something like this:
The text was updated successfully, but these errors were encountered: