obsidian-dataview
obsidian-dataview copied to clipboard
Embedding in dataview - differences between live-edit/reading mode
What happened?
The code embeds the files properly only in live-edit mode, not in reading mode.
DQL
No response
JS
Java-Script
Version #1
let meetings = dv.pages("#meeting").where(c => c.held = dv.current().file.name)
meetings.forEach(p => dv.paragraph(dv.fileLink(p.file.name, true)))
Version #2
dv.pages("#meeting").where(c => c.held = dv.current().file.name).forEach(p => dv.paragraph(dv.fileLink(p.file.name, true)))
Code previews like this in the live-edit (correctly):

But in the reading mode, it looks like this (incorrectly):

Dataview Version
0.5.43
Obsidian Version
0.15.9
OS
Windows
Closely related with this, actually: #177
hey @DeutscheGabanna can you re-check please? the pr #2266 likely solved this after shipping as update to everyone.