mirror of
https://github.com/MatMoul/dokytree.git
synced 2024-12-23 08:06:11 +00:00
Bug parsing item.pug
This commit is contained in:
parent
2c5d57e8ab
commit
1db2eed430
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user