Previously, when sending newlines, they were not captured when sending and displaying messages. This was due to both the server and the front-end implementation.
Now, the back-end escapes any newline characters to \n (from this main repo PR, which the front-end re-converts to newline characters for display in the app (also enabled by a slight CSS change).
Not necessarily dependent on the main repo PR, but we should probably merge them together anyway.
Previously, when sending newlines, they were not captured when sending and displaying messages. This was due to both the server and the front-end implementation.
Now, the back-end escapes any newline characters to
\n
(from this main repo PR, which the front-end re-converts to newline characters for display in the app (also enabled by a slight CSS change).Not necessarily dependent on the main repo PR, but we should probably merge them together anyway.
Closes #29