Join sequence of lines when 1st has lower indentation

Use case or problem

To support various text editors, long lines of text are divided into multiple lines. To support GitHub-alike ability to create multiline paragraphs, the 2nd and later lines of such divided text are additionally indented.

For example, im creating a Vault with Readme which includes a section which says how to setup Obsidian. I expect that the Readme will be opened with Notepad.

Proposed solution

In the reading mode, join:

t1
    t2

* t3
        t4

Into:

t1 t2

* t3 t4

This functionality is already supported. Just turn “Strict Line Breaks” (in Settings > Editor) ON.

This request is some larger. But yes, actually that solves it on my side, ty.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.