Issue with table

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.

image

So, are you sure the image results from the provided code?

Cheers, Marko :nerd_face:

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
```
````
1 Like

And why didn’t you fix mine? :wink: … I always forget :frowning_face: … Thanks for being thermal!

Cheers, Marko :nerd_face:

1 Like