Operating system
Windows
Joplin version
3.2.13
Desktop version info
Joplin 3.2.13 (prod, win32)
Client ID: 8a7835c798b146ca87fc403a2a345c0f
Sync Version: 3
Profile Version: 47
Keychain Supported: Yes
Revision: a898e17
Backup: 1.4.2
Freehand Drawing: 2.14.0
Sync target
OneDrive
Editor
Markdown Editor
What issue do you have?
Deleting lines from a numeric list doesn't reorder the list. I've noticed this in both the Markdown and Rich Text editors. The reason I bring this up is because I would like to move items within a list and also move items between two different lists. This is most of the issues I found with numeric lists.
The examples below are all based on this original numeric list. This is the way it would look before making changes.
- Line 1
- Line 2
- Line 3
- Sub Line 3.1
- Sub Line 3.2
- Sub Line 3.3
- Line 4
- Line 5
- Line 6
If I delete a numeric line 1 it doesn't reorder the list, i.e. 2 becomes 1 at the top of the list. This happens whether I just delete it or use ctrl + X to move it elsewhere. However, pasting it elsewhere does work, but it isn't ordered properly. You can see the differences in Markdown vs. Rich Text in the following examples.
Markdown Example:
2. Line 2
- Line 1
- Line 3
- Sub Line 3.1
- Sub Line 3.2
- Sub Line 3.3
- Line 4
- Line 5
- Line 6
Rich Text Example:
2. Line 2
3. Line 1
4. Line 3
1. Sub Line 3.1
2. Sub Line 3.2
3. Sub Line 3.3
5. Line 4
6. Line 5
7. Line 6
If I delete a line or sub line using delete or ctrl + X to move it elsewhere it doesn't reorder the list. In the list below you can see the sub lines are now ordered 1 then 3. You can also see that the main lines are now ordered 4 then 6.
- Line 1
- Line 2
- Line 3
- Sub Line 3.1
- Sub Line 3.3
- Line 4
- Line 6
If I add a new line between existing lines by hitting enter at the end of a line it puts a hard return instead of creating a new line that's properly ordered. Oddly this doesn't work in Markdown, but does work in Rich Text. If I add a blank line in Rich Text it works, but if I leave it blank after the number there's a hard return in markdown and it's no longer ordered correctly.
Markdown Example:
-
Line 1
-
Line 2
-
Line 3
-
Sub Line 3.1
-
Sub Line 3.2
-
Sub Line 3.3
-
-
Line 4
-
Line 5
-
Line 6
Rich Text Example:
- Line 1
- Line 2
- Line 3
- Sub Line 3.1
- Sub Line 3.2
- Sub Line 3.3
- Line 4
- Line 5
- Line 6
Copying and pasting an entire numeric list in Rich Text works, but changes it to a bulleted list. This works properly in Markdown.
Thanks for any help you can provide!