| commit | ecda070f49102dca93e8f120cbd3c21ee9008099 | [log] [tgz] |
|---|---|---|
| author | Android Build Coastguard Worker <[email protected]> | Fri Jul 07 05:23:12 2023 +0000 |
| committer | Android Build Coastguard Worker <[email protected]> | Fri Jul 07 05:23:12 2023 +0000 |
| tree | 7a26fe7060121f06633afbf29cad40dbc58ae5e2 | |
| parent | d91c90ecd3d910466998064d10cc32a40a95e581 [diff] | |
| parent | 167c1787901502ab8b5fe3d4cd1641c0022232b3 [diff] |
Snap for 10453563 from 167c1787901502ab8b5fe3d4cd1641c0022232b3 to mainline-rkpd-release Change-Id: I8bef92148c24a7232f144cf5419fb633ec54cea3
This crate provides a macro that extracts documentation comments from Cargo.toml
To use this crate, add #![doc = document_features::document_features!()] in your crate documentation. The document_features!() macro reads your Cargo.toml file, extracts feature comments and generates a markdown string for your documentation.
Use ## and #! comments in your Cargo.toml to document features, for example:
[dependencies] document-features = "0.2" ## ... [features] ## The foo feature enables the `foo` functions foo = [] ## The bar feature enables the [`bar`] module bar = [] #! ### Experimental features #! The following features are experimental ## Activate the fusion reactor fusion = []
These comments keep the feature definition and documentation next to each other, and they are then rendered into your crate documentation.
Check out the documentation for more details.
Contributions are welcome. We accept pull requests and bug reports.
MIT OR Apache-2.0