1
0
Fork 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
1 changed files with 1 additions and 1 deletions

View File

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