How do I make the table have a new line for each row? This is maddening.
```dataview
TABLE WITHOUT ID
file.name, file.inlinks As "Links"
WHERE file.name = this.file.name
```
I want to generate a list of ALL links out or in to a file.
How do I make the table have a new line for each row? This is maddening.
```dataview
TABLE WITHOUT ID
file.name, file.inlinks As "Links"
WHERE file.name = this.file.name
```
I want to generate a list of ALL links out or in to a file.
Not sure why you get them in a row, comma separated, as I just copy/paste your code (and add out-links), and I get it like this …
But if I add join
command like this …
```dataview
TABLE WITHOUT ID
file.name, join(file.inlinks, ", ") As "Links"
WHERE file.name = this.file.name
```
… I got what you have.
So, are you sure the image results from the provided code?
Cheers, Marko
by the way, I just added 4 backticks around your 3-backtick code, so that the 3 backticks also show as code.
````
```dataview
your code here
```
````
And why didn’t you fix mine? … I always forget
… Thanks for being thermal!
Cheers, Marko