Table cell background color

It looks like you all decided to implement table cell alignment.

Does this mean Bear will maintain table state outside of markdown? If so, please consider allowing users to set table cell background color too. This would be useful for highlighting header columns / rows, or highlighting cells that need special attention.

Table column alignment is part of GitHub Flavoured Markdown:

| align  | align  | align  |
|:------ |:------:| ------:|
| left   | center | right  |

So, there’s no need to keep track of a state outside markdown.

1 Like

We’re not storing data outside the Markdown, and we want to avoid that as much as possible in order to keep the format open and readable by everyone :slight_smile:

As someone already noticed, the alignment is part of the GFM table syntax so we were able to add it.

Best.

1 Like