List formatting breaks when embedding tables or notes inside nested lists

I encountered the same issue as described in this link, but it hasn’t been resolved. Does anyone have a solution? Thanks.

Sounds like two issues: syntax and Live Preview rendering.

When following the CommonMark spec, embedding items inside lists works quite well in Obsidian.

Here’s an example. Syntax to embed a note in line b and a table in line e:

- a
	- b
		![[note]]
	- c
- d
	- e

		| a   | b   |
		| --- | --- |
		| a1  | b1  |
	- f
- g

In Reading, it renders nicely.

In Live Preview, :see_no_evil_monkey:.

Live Preview is a middle-ground between markdown editing (Source mode) and HTML rendering (Reading). For specific issues, you could look up existing bug reports for workarounds, or bring unreported issues to the team’s attention. But as a middle-ground convenience that makes compromises between rendered HTML and editable markdown, it seems unlikely to get all of its quirks fixed.