Consecutive Lists

approved

by Josh Tucker

Create consecutive lists that are displayed separately in reading mode.

5 stars1,433 downloadsUpdated 2y agoGPL-3.0
View on GitHub

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.