DesignLiquido / xslt-processor

A JavaScript XSLT processor without native library dependencies
GNU Lesser General Public License v3.0
102 stars 31 forks source link

Não converte `html` para `lmht` quando tem tag `<!DOCTYPE html>` #72

Closed samuelrvg closed 1 year ago

samuelrvg commented 1 year ago

Ex:

<!DOCTYPE html>
<html>
    <head>
        <title>Teste</title>
    </head>
    <body>
        Teste
    </body>
</html>

Gera um resultado vazio no console, se remover a tag <!DOCTYPE html> funciona normal.

O problema ocorrem mesmo a tag estando comentada também.