Skip to content

Can a single cell of a table component include line breaks ? #854

Answered by lovasoa
mgmgh asked this question in Q&A
Discussion options

You must be logged in to vote

Okay, I think I understand:

  • You have a PostgreSQL table with a column of type TEXT[] (an array of strings), and
  • you want to display this data in a SQLPage table component,
  • with each element of the array displayed on a new line within the table cell.

Is that correct ?

The key to making this work is using markdown, and remembering that in markdown, paragraphs of text are delimited by two \n characters, not one.

CREATE TABLE IF NOT EXISTS my_table (
  name VARCHAR(255) PRIMARY KEY,
  tags TEXT[]
);

INSERT INTO my_table (name, tags) VALUES
  ('Item 1', ARRAY['tag1', 'tag2', 'tag3']),
  ('Item 2', ARRAY['tag4', 'tag5']),
  ('Item 3', ARRAY['tag6', 'tag7', 'tag8', 'tag9'])
ON CONFLICT (name)…

Replies: 3 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by mgmgh
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants