blob: cc21d3b5681efc4bb7b98d11492faaf5e08795a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/usr/bin/perl
use strict;
my $pont = qr{[.!?]+}; ## punctuation
my $abrev = qr{\b(?:Pr|Dr|Mr|[A-Z])\.}; ## abbreviations
my $header = qr{(=+ .*? =+)};
$/ = "";
while(<>) {
chomp; ## for each paragraph,
s/\h*\n\h*/ /g; ## remove \n
s/($pont)\h+(\S)/$1\n$2/g; ## punctuation+space
s/($abrev)\n/$1 /g; ## undo \n after abbreviations
s/$header\h+(\S)/$1\n$2/g; ## vimwiki headers
print "$_\n";
}
|