Multiline fields

Is it possible to have a multiline field (for querying with dataview)?
E.g.
field:: first line
second line
third line

so that when I do a query of the form

dataview
table field

I get
first line
second line
third line

This works:

table tester
where tester
1 Like

You can also use htlm, like breaks: <br>

field:: first line <br>second line <br>third line

My personal choice is the repeated field approach suggested by u/RoyRogers, but I find <br> very useful in markdown tables.

2 Likes

I guess this is the closest workaround that exists, thanks!

1 Like

The advantage of using <br> as @FsOver2 suggests is that the lines in the Dataview table are not prefaced by list bullets, as they were with my suggestion.

1 Like