deno_doc
A Rust crate to generate documentation for JavaScript and TypeScript modules.
This crate powers
deno doc
, but is not
Deno specific and can be used to write documentation generators for other
targets like Node or the browser as well.
See js/README.md.
examples/ddoc/main.rs
provides a minimal standalone binary demonstrating how
deno_doc
can be used as a crate.
shell
$ cargo run --example ddoc ../deno_std/http/mod.ts
```shell
$ cargo build --all-targets
$ cargo test
$ deno task build
$ deno task test ```
If you are going to work on an issue, mention so in the issue comments before you start working on the issue.
Please be professional in the forums. See our Code of Conduct.
Ask for help in the community chat room.
Before submitting, please make sure the following is done:
cargo test
and deno task test
passes.rustfmt --check src/lib.rs
cargo clippy --all-targets --release --locked -- -D clippy::all
passes.