Bug parsing item.pug

This commit is contained in:
MatMoul 2024-04-27 18:35:54 +02:00
parent 2c5d57e8ab
commit 1db2eed430

View File

@ -1,10 +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
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