1
0

Check if line is empty.

This commit is contained in:
Alexander Andreev 2023-05-23 03:28:04 +04:00
parent 18d45e5a92
commit b512af25a3
Signed by: Arav
GPG Key ID: D22A817D95815393

View File

@ -1,7 +1,7 @@
extends base.pug extends base.pug
mixin entryLine(line) mixin entryLine(line)
if (line[0] == '>') if (len(line) > 0 && line[0] == '>')
p.quote= line p.quote= line
else else
p= line p= line