thirteenthEyes
Results
1
comments of
thirteenthEyes
Source code(in htmlToElement.js Eighty-eighth lines): if (node.name === 'img') { return ; } Change to: if (node.children && node.children.length > 0 && node.children[0].name === 'img') { return ; }