Generated docs display items annotated with @ignore
The deno soc website currently displays items annotated with @ignore in the JSDoc comments, which can lead to more confusing documentation.
Eg: https://doc.deno.land/https/raw.githubusercontent.com%2Fdyedgreen%2Fdeno-sqlite%2Frework_api%2Fmod.ts#PreparedQuery (the iterator protocol is implemented by the PreparedQuery class, but this is an internal detail which should not be relied upon by users of the api; hence it would be nice to be able to hide these methods in the generated documentation)
I’m not sure if this is an issue with the deno doc parser or with the html rendering done here, but I would guess that the @ignore directive is parsed out but then subsequently ignored 😅
Consider also masking/redacting blocks annotated with @private as well as @ignore.