I converted a .lakebook document to a .md document and found that some of the image links in the .md file were only partially effective, and some image links were not successfully recognized.
Windows10 22H2
I converted a .lakebook document to a .md document and found that some of the image links in the .md file were only partially effective, and some image links were not successfully recognized.
Windows10 22H2
These descriptions are translated by me using translation software. If you have difficulty understanding them, please contact me.
I’ve moved this to Help because it doesn’t follow the bug report template and sounds like it’s probably not a bug.
What is a .lakebook document?
How did you convert it?
What does this mean?
Are the image files in the vault folder?
It appears the <tr> is causing the issue.
live preview | reading view

Obsidian thinks you are opening an HTML tag which isn’t closed. In Live preview this causes Markdown, links, embeds, etc., not to work properly.
You can close the tag:
<tr></tr>
mark it as inline code with backticks:
`<tr>`
or escape the first bracket with a \
\<tr>
and the image embeds, etc., after should work.
Oh my god, your explanation is correct, my problem is solved! Thank you!