init/summary: make a few lines easier to read

This commit is contained in:
Christine Dodrill 2015-02-16 01:21:54 -08:00
parent b44f45f26e
commit 60f6520307
1 changed files with 1 additions and 3 deletions

View File

@ -17,9 +17,7 @@ with io.open fname, "r"
while true
line = \read "*l"
break if not line or line == "" -- Only render the first paragraph
if line[#line] ~= " "
line = line .. " "
line = line .. " " if line[#line] ~= " "
data = data .. line