Nested quotation blocks are incorrectly rendered in LIve Preview

Steps to reproduce

Create a hierarchical block-quote and view in both live preview and reading modes.

e.g.:

> one
> > two
> > > three
> > two
> one

Did you follow the troubleshooting guide?

Yes

Expected result

I expect the reading mode to be the same as the live preview mode and for the indentations of the block-quotes to match accordingly.

Live preview mode (correct rendering):

Actual result

Reading mode (incorrect rendering):

Environment

SYSTEM INFO:
Obsidian version: v1.8.2
Installer version: v1.7.7
Operating system: Darwin Kernel Version 21.6.0: Mon Jun 24 00:56:10 PDT 2024; root:xnu-8020.240.18.709.2~1/RELEASE_X86_64 21.6.0
Login status: logged in
Language: en
Catalyst license: insider
Insider build toggle: on
Live preview: on
Base theme: adapt to system
Community theme: none
Snippets enabled: 0
Restricted mode: on

RECOMMENDATIONS:
none


Additional information

Yes, there is a problem. However it is live preview the wrong one here.p

@WhiteNoise ,

It appears that “live preview” does correctly render the block-quotes, while “reading” mode does NOT.

Thanks

Nope

https://spec.commonmark.org/dingus/?text=%23%23%20Try%20CommonMark You%20can%20try%20CommonMark%20here.%20%20This%20dingus%20is%20powered%20by [commonmark.js](https%3A%2F%2Fgithub.com%2Fcommonmark%2Fcommonmark.js)%2C%20the JavaScript%20reference%20implementation. 1.%20item%20one 2.%20item%20two %20%20%20-%20sublist %20%20%20-%20sublist >%20one.%20%20 >%20>%20two.%20%20 >%20>%20>%20three.%20%20 >%20>%20two.%20%20 >%20one.%20%20

Well, according to the CommonMark spec, you are correct and the Live Preview mode is actually not rendered according to spec.

https://spec.commonmark.org/0.31.2/#block-quotes

Thanks for the clarification.