document-features icon indicating copy to clipboard operation
document-features copied to clipboard

Extract documentation for the feature flags from comments in Cargo.toml

Results 3 document-features issues
Sort by recently updated
recently updated
newest added

I am trying to add a nested list in my feature docs (for feature subsets) example: * ... * **`builtin_font`** *(enabled by default)* — Enable the built-in font (ProggyTiny, adds...

With ```toml [features] default=["qqq"] ## Qqq qqq=["www"] ## Www www=[] ``` I expect * qqq _(enabled by default)_ — Qqq * www _(enabled by default)_ — Www , but get...

Because `#![doc = document_features::document_features!()]` is quite long and unnecessary repeats itself. I think it'll be better to have something like `document_features::get!()`, `extract`, etc.