Bug: PUG identation

This commit is contained in:
MatMoul 2024-04-28 03:52:38 +02:00
parent 6d7942a0b7
commit 16130f81d2

View File

@ -1,12 +1,12 @@
mixin parseValue(value, level)
if typeof value === 'string'
if value.substr(0,8) === 'https://' || value.substr(0,7) === 'http://'
td
a(href=value, target='_blank')=value
else
td=value
else if typeof value === 'string' || typeof value === 'number'
td=value
if typeof value === 'string'
if value.substr(0,8) === 'https://' || value.substr(0,7) === 'http://'
td
a(href=value, target='_blank')=value
else
td=value
else if typeof value === 'string' || typeof value === 'number'
td=value
else
if Array.isArray(value)
if value.length > 0