We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Having current code:
free-programming-books-parser/index.js
Lines 140 to 172 in dc53b8c
If a bold format is found, the i.value is undefined and then the program crash. It should check if i.type == "strong" or have i.children.
i.value
i.type == "strong"
i.children
Resources affected:
In general, we should extends the fix in depth to other inline formats like emphasis (already exists), bold, code, image...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Having current code:
free-programming-books-parser/index.js
Lines 140 to 172 in dc53b8c
If a bold format is found, the
i.value
is undefined and then the program crash. It should check ifi.type == "strong"
or havei.children
.Resources affected:
In general, we should extends the fix in depth to other inline formats like emphasis (already exists), bold, code, image...
The text was updated successfully, but these errors were encountered: