Tom McAtee
Tom McAtee
+1 on this doc! It's very unclear if formatted messages requires both html and markdown, or if using only markdown (without accompanying HTML) is possible. Is it required that both...
Okay, it seems that the library is accidentally parsing the 'Edit' part of a section heading as part of the heading. See attached image for an example of this. 
hey @goldsmith - could you merge the pending PRs?
This issue is still current!
Scratch that, found what the issue is. The function **idFetch** is returning an `Error` object (in this case: for a query with no results), which isn't being handled but instead...
I've fixed this in my local copy by adding: ```javascript if(ids instanceof Error) { throw ids; } ``` after [this line in search.js](https://github.com/dunn/libgen.js/blob/trunk/lib/search.js#L145): ```javascript let ids = await idFetch(options) ```
Ahhh I see - `search.js` catches exceptions and returns them as normal outputs. If anyone needs this in the future; check the returned object type (as `await libgen.search(options).catch(err=>{...})` won't be...
+1 this library is no longer functional with newer versions of Django