Nested callouts not unnesting

Steps to reproduce

> [!note] title
> First level content
> > [!note]
> > Nested callout content
> More first level content

Did you follow the troubleshooting guide? [Y/N]

Y with sandbox vault

Expected result

I expected to see a nested callout surrounded by its container callout. The last line, with only one > should have been outside of the nested callout and back in the outer callout.

Actual result

Everything after I created the nested callout was inside the nested callout, even when I decreased the > > to just >.

Environment

SYSTEM INFO:
Obsidian version: v1.4.12
Installer version: v1.4.12
Operating system: Darwin Kernel Version 21.6.0: Mon Apr 24 21:10:53 PDT 2023; root:xnu-8020.240.18.701.5~1/RELEASE_X86_64 21.6.0
Login status: not logged in
Insider build toggle: off
Live preview: on
Legacy editor: off
Base theme: dark
Community theme: none
Snippets enabled: 0
Restricted mode: on

RECOMMENDATIONS:
none


Additional information

markdown_for_nested_callouts_not_unnesting

This is not a bug really, you actually need an empty line too

> [!note] title
> First level content
> > [!note]
> > Nested callout content
> 
> More first level content

Even simple quotes have this “issue”, it comes from markdown.

> aaa  
cat

vs

> aaa  

cat

Thank you!

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