Best Way to Work with Long Strings of Text in an Editor?

This topic was automatically generated from Slack. You can find the original thread here.

Hey all, general question: what is the best way to work with long strings of text in the editor? I often find myself needing to work with paragraphs of text, which can be quite difficult to manipulate in the editor. Are there any solutions available to this, even if it’s a third-party platform? E.g. something better than Sheets

Are you using backticks currently?

I find them useful for multilines:

const longString = `
I'm a very long string
`;

I am not but will give it a try! Thank you!

Might help a bit. Here’s the MDN docs on it:

The multiline functionality is already worth it. Thanks for sharing.