denoland / docland

The documentation generation website for Deno
https://doc.deno.land
MIT License
119 stars 29 forks source link

Escaped jsdoc close shows up in output #171

Open dsherret opened 2 years ago

dsherret commented 2 years ago

I'm actually not sure what should be fixed here (docland or deno_std), but the end jsdoc close (**/) here is escaped in the code by doing **\/ and it shows up on the site:

https://doc.deno.land/https://deno.land/std@0.147.0/fs/mod.ts/~/expandGlob

kitsonk commented 1 year ago

escaping comments in JSDoc code blocks is actually non-standard... basically we don't do anything. You can see the long issue here about it: https://github.com/microsoft/tsdoc/issues/166