Steps to reproduce
Inside a note, start a new blockquote, with a nested blockquote inside, and then finally another line on the original blockquote level, like this:
> level 1
> > level 2
> level 1 again
Switch to the reading mode, and observe how the last line (“level 1 again”) is pulled into the nested blockquote above it.
Did you follow the troubleshooting guide? [Y]
Expected result
The lines “level 1” and “level 1 again” should be on the same level of indentation.
Actual result
The last line of the blockquote is pulled into the nested blockquote and has an indentation of 2 instead of 1.
Environment
SYSTEM INFO:
Obsidian version: v1.5.3
Installer version: v1.4.13
Operating system: Windows 10 Pro 10.0.19045
Login status: not logged in
Insider build toggle: off
Live preview: on
Base theme: adapt to system
Community theme: none
Snippets enabled: 0
Restricted mode: off
Plugins installed: 1
Plugins enabled: 0
RECOMMENDATIONS:
none
Additional information
The rendering is fixed when there’s an empty line after the nested blockquote with the original level of indentation:
> level 1
> > level 2
>
> level 1 again
This probably happens because a blockquote will implicitly be continued until it’s ended by an empty new line. Setting an explicit nesting level should overrule that implicit behaviour though.
This will render into a blockquote with three lines, displaying the implicit continuation of blockquotes:
> This is a blockquote
that's implicitly extended
even though only the 1st line starts with a >
This line is not part of the blockquote anymore