Testing Multi-Line Input I'm working on an improved text editor for Lagrange v1.5. It expands as you write text, and newlines can be inserted, too. Let's see if these newlines are preserved. Testing 1 2 3 Another line and a third one.
1 year ago ยท ๐ martin, figbert, thatsredadcted, rdelaage, gnuserland, know, dunkel, aka_dude, bobby
Great! Maybe the best approach is to strip all whitespace at the ends, and allow at most 2 consecutive '\n's in the middle. ยท 1 year ago
I currently strip them, but I could undo that pretty easily. With a better text input that enables longer-form input, this seems like a big win! ยท 1 year ago
The newlines were not preserved. @martin ยท 1 year ago