nodeschool / discussions

:school::speech_balloon: need help with nodeschool? or just wanna ask a question? open an issue on this repo!
489 stars 107 forks source link

ISSUE LEARNYOUHTML #2647

Open cristinalac opened 1 year ago

cristinalac commented 1 year ago

Notes

Please delete this section after reading it

If you have a problem with an error message:

Error output


 // copy your error output here
```MacBook-Pro-de-Farid:Ejercicio faridjamilsesinrueda$ learnyouhtml verify index.html

# Learn HTML

## TAGS (Exercise 2 of 11)

/usr/local/lib/node_modules/learnyouhtml/utils/parse.js:8
    return resolve(tree.firstChild.structure);
                                   ^

TypeError: Cannot read properties of undefined (reading 'structure')
    at /usr/local/lib/node_modules/learnyouhtml/utils/parse.js:8:36
    at FSReqCallback.readFileAfterClose [as oncomplete] (node:internal/fs/read_file_context:68:3)
### My Code
```js
 // copy your code here
```<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>Hello, world!</title>
    </head>
    <body>
        <p>El bloque básico de un documento es el párrafo. Dentro de un documento HTML, es preciso marcar explícitamente el comienzo de un párrafo, para lo cual se utiliza la etiqueta.</p>
        <hr>
        <p>En caso de no especificarlo, todo el texto se mostraría como una única línea. Se debe tener en cuenta que determinados elementos que se verán más adelante (títulos, blockquotes, preformateados, listas) insertan un salto de párrafo o línea de forma automática.</p>
    </body>
</html>
cristinalac commented 1 year ago

TypeError: Cannot read properties of undefined (reading 'structure')

My Code: MacBook-Pro-de-Farid:Ejercicio faridjamilsesinrueda$ learnyouhtml verify index.html