I’m trying to keep my team’s resources all in the same place, including some very simple fill-in-the-blank text boilerplates. The text contains and
tags for styling already because one of the platforms it will end up in, for some reason, interprets strings of more than one line-break character as something it needs to preserve, so it automatically adds a
to “preserve my intent”.
I’ve noticed that I can copy text into an airtable long-text field (with or without Markdown turned on) that’s formatted like this:
Some random text
More random text
And some more
but when I copy it back out to plain text it looks like the invisible \r\n
at the end of the line has been turned into \r\n\r\n
like this
Some random text
More random text
And some more
Is there a setting to fix this, or will I need to remove the extra line breaks from everything that comes out of an airtable interface? (I already have the expression for it (\r\n){2,}
, I just don’t look forward to teaching people who barely understand html how to use a regular expression.)