I am using React to create webpage and using data field as yaml. I need to put long paragraph in React using yaml. But I could not add new line by yaml.
- subtitle: Add new line
content: |
I want to add new line here
but | or > or <br> does not work
and my output is
How can I add new line between two sentence?
does not work." but I could not make a new line between two sentences. two fields mean that do I need to create as contents1: and contents2:? – Jonah KIM Jul 05 '23 at 17:04
` to get content to break: it's a holdover from decades ago, don't use `
`, properly tag your content (e.g. in spans) and then assign CSS that effects the typesetting you need. – Mike 'Pomax' Kamermans Jul 05 '23 at 17:08