In Flask wtform's StringField which handles multiline text input, I could only have a long string of text, even through I need to put in multiple lines. If the original text I pasted in has multiple lines, it became a long one-line string as well.
Pressing enter in the text area (string field) does not create a new line, instead it confirms the input. How can I break up a chunk of text into multiple lines in StringField?