Part of module comments of `deno_std/flags/mod.ts` are not displayed
lambdalisue opened this issue · 0 comments
lambdalisue commented
It seems deno_std/flags/mod.ts
has module comments like below (ref)
/**
* @deprecated (will be removed in 1.0.0) Import from `std/cli/parse_args.ts` instead
*
* Command line arguments parser based on
* [minimist](https://github.com/minimistjs/minimist).
*
* This module is browser compatible.
*
* @example
* ```ts
* import { parse } from "https://deno.land/std@$STD_VERSION/flags/mod.ts";
*
* console.dir(parse(Deno.args));
* ```
*
* @module
*/
But deno doc shows only code example like (2024/01/14)