init/summary: make a few lines easier to read
This commit is contained in:
parent
b44f45f26e
commit
60f6520307
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue