Bases: Method to format a list of properties to display over multiple lines rather than single line

Using join(sort(row["user names"]), "<br>") in a dataview block, it is possible to read the values in the user names list property and display them in a column in a table cell. This makes the values much easier to read rather than bases which displays the values all concatenated.

Frontmatter:

---
user names:
  - email:
  - github: xyz
  - gitlab: xyz
  - jira: xyz
  - slack: xyz
  - rover: xyz
---

Example data view results:

email: -
github: xyz
gitlab: xyz
jira: xyz
slack: xyz
rover: xyz

vs. bases results

email: - github: xyz gitlab: xyz jira: xyz slack: xyz rover: xyz