Skip to content

Instantly share code, notes, and snippets.

@heikkil
Last active December 28, 2015 13:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save heikkil/7510734 to your computer and use it in GitHub Desktop.
Save heikkil/7510734 to your computer and use it in GitHub Desktop.
#!/usr/bin/env perl
# Turn consecutive non-empty lines of plain text into paragraphs
local $/ = "\n\n"; #paragraph separator
while (<>) {
chomp($_);
# Replace newlines inside paragraphs by spaces and remove multiple spaces
s/\n/ /g;
s/ +/ /g;
# Print each non-blank block out separated by the paragraph separator
print "$_\n\n" if (!(/^\s*$/));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment