Last active
December 28, 2015 13:49
-
-
Save heikkil/7510734 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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