Files
kewt/awk/breaks.awk

6 lines
83 B
Awk

{
if ($0 == "" && prev == "") print "<br />"
else print $0
prev = $0
}