s-blu

Results 18 comments of s-blu

I have the same trouble on Windows 10. When I drag and drop an image from the Windows File Explorer onto Obsidian, the file gets inserted correctly, but the rename...

Hello, You can do that with help of the `folder`, not the `path` implicit field: ```dataview LIST WHERE file.folder = this.file.folder ``` Path contains the file name, folder does not.

It's a bit clunky, but you can use the [truncate](https://blacksmithgu.github.io/obsidian-dataview/reference/functions/#truncatestring-length-suffix) function to shorten your files link: `TABLE WITHOUT ID link(file.path, truncate(file.name, 20))` You can do similar with long field values:...

This works now as intended. I'll close the issue as resolved. If you still see any problem here, please comment on the issue with details on what is not working...

Goal of the issue: Compare if all functions implemented here: https://github.com/blacksmithgu/obsidian-dataview/blob/master/src/expression/functions.ts are available in the docs with all their variants

> Last I checked, 4 were missing mostly because I had no idea what they did. I wonder if we can do some sort of autogeneration from the test cases...

Hey @filmgal , do you think it would help if we add a hint to the documentation that task-leveled metadata are not propagated to page level?

Hey, thanks for you feedback! To be precise you _can_ query that in one query: ```dataview TABLE duedat, map(file.tasks, (x) => x.duedat) WHERE duedat OR any(map(file.tasks, (x) => x.duedat)) ```...

Hmm, seems to be a MacOS based error, works fine for me on Windows 10 at least. It's strange that you're seeing these strings like this anyway, they should transform...