Is there any way to format text on a page that comes from a multi line input that avoids orphans in a paragraph. In other words, if a line break would make it so there’s only one word on the final line, it would force the word before it to break onto the last line as well.
Use custom CSS? Didn’t try it, but I think it will work. I don’t know any straight forward Bubble solution.
p {
orphans: 2;
widows: 2;
}