6 lines
83 B
Awk
6 lines
83 B
Awk
{
|
|
if ($0 == "" && prev == "") print "<br />"
|
|
else print $0
|
|
prev = $0
|
|
}
|