Alternatively use the code below in lotusscript to remove the squares or blocks.While Instr(temp, chr$(10) )
temp=Left(temp, Instr(temp, chr$(10) )-1) & "%20" & Right(temp, Len(temp) - Instr(temp, chr$(10)))
Wend
might have to do it with chr$(9) as well