mirror of
https://github.com/openresty/openresty
synced 2024-11-14 08:45:50 +01:00
21 lines
278 B
C
21 lines
278 B
C
|
#!/usr/bin/env perl
|
||
|
|
||
|
use strict;
|
||
|
use warnings;
|
||
|
|
||
|
my $indented;
|
||
|
while (<>) {
|
||
|
if (/^ \S/) {
|
||
|
$indented = 1;
|
||
|
print;
|
||
|
next;
|
||
|
}
|
||
|
if ($indented) {
|
||
|
if (/^[^-\#=\s]/) {
|
||
|
print "\n";
|
||
|
}
|
||
|
undef $indented;
|
||
|
}
|
||
|
print;
|
||
|
}
|