Consecutive Lists
approvedby Josh Tucker
Create consecutive lists that are displayed separately in reading mode.
Obsidian Consecutive Lists
Create consecutive lists that are displayed separately in reading mode.

This plugin changes nothing about the way markdown is interpreted in Obsidian. It creates markdown entirely compatible with other parsers, ensuring your notes are transferrable, and completely unreliant on this plugin.
It works simply by automatically inserting alternating list characters in consecutive lists, so they appear correctly separated in reading mode.
Explanation
Say you wanted to create these two lists:
- item 1
- item 2
- item 3
- item 4
- item 5
- item 6
This wouldn't work using this markdown:
- item 1
- item 2
- item 3
- item 4
- item 5
- item 6
Which would result in this:
-
item 1
-
item 2
-
item 3
-
item 4
-
item 5
-
item 6
So the plugin automatically changes the list character for the second list, resulting in this markdown:
- item 1
- item 2
- item 3
+ item 4
+ item 5
+ item 6
Resulting in what we wanted:
- item 1
- item 2
- item 3
- item 4
- item 5
- item 6
For plugin developers
Search results and similarity scores are powered by semantic analysis of your plugin's README. If your plugin isn't appearing for searches you'd expect, try updating your README to clearly describe your plugin's purpose, features, and use cases.