According to current code
|
const [link, ...otherStuff] = listItem; // head of listItem = url, the rest is "other stuff" |
|
entry.url = link.url; |
|
entry.title = link.children[0].value; |
|
// remember to get OTHER STUFF!! remember there may be multiple links! |
first node children[0] is used as resource titles without check if there are more meaningfull tokens. So the rest is stripped making sometimes difficult to do a search by title of resources.

Therefore a escape in resources title links part is needed when submitting and make a rebuild Markdown here is mandatory
Context
See EbookFoundation/free-programming-books#7086
Related with #2 (same workarround)
According to current code
free-programming-books-parser/index.js
Lines 92 to 95 in dc53b8c
first node
children[0]is used as resource titles without check if there are more meaningfull tokens. So the rest is stripped making sometimes difficult to do a search by title of resources.Therefore a escape in resources title links part is needed when submitting and make a rebuild Markdown here is mandatory
Context
See EbookFoundation/free-programming-books#7086
Related with #2 (same workarround)