I have a text column in our database(postgresql if that matters) that is then rendered using markdown. I want that text column to represent an unordered list, which means I need to somehow add a linebreak(\n) inside my string to workaround that. Ive tried this answer: Mimic a newline in Markdown with no success, the markdown string ive entered is:
- One \n- Two \n- Three \n- Four
and the rendered output is:
The markdown is rendered using a react library called "simple-markdown" any idea how to workaround this?