Breakline support on Bases Formula

Use case or problem

Enable break-line support on Bases Formula:

Proposed solution

There are multiple ways to achieve this.

  1. Enable \n is a possibility.
  2. Create a new helper function breakLine(): Functions - Obsidian Help

c.

Current workaround (optional)

None

Related feature requests (optional)

None

2 Likes

I did not find a way to edit the main post, but I found a way to achieve that using custom css snippet:

div.bases-td[data-property="formula.day_summary"] div.bases-table-cell {
    white-space: pre;
    font-family: monospace;
}

Note that I am specifying the exact formula name, you might want to change that to your specific scenario.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.