Dataview: Creating a image from a property

I have multiple notes in a folder with the name of an image in a property cover, on the parent folder I have a List of those notes, and I’m trying to show the image from that cover property in a smaller size, but it doesn’t seem to work:

image

TABLE WITHOUT ID
	file.link, 
	Author,	
	("![[" + Cover + "|150]]") AS COVER
FROM #Books

It list the property like this:
image

I tried also leaving just

Dune.jpeg

On the property.

I finally solved the problem extracting the link from the property and then reconstructing it with the size I want.

image

embed(link(meta(Cover).path,"100")) AS COVER
1 Like

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