You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My project uses #![doc = include_str!("../README.md")] to generate the rustdoc for the crate from its README. However, I noticed a user forked it just to remove this line, ostensibly since they're using a Rust version < 1.54.
Does this crate support this opposite direction for the doc generation? For example, outputting rustdoc comments to stdout, or automatically replacing src/lib.rs rustdoc with the result.
I suppose I can also just convert the markdown to rustdoc manually, but I'm curious about a tool for this. Thanks!
The text was updated successfully, but these errors were encountered:
My project uses
#![doc = include_str!("../README.md")]
to generate the rustdoc for the crate from its README. However, I noticed a user forked it just to remove this line, ostensibly since they're using a Rust version < 1.54.Does this crate support this opposite direction for the doc generation? For example, outputting rustdoc comments to stdout, or automatically replacing
src/lib.rs
rustdoc with the result.I suppose I can also just convert the markdown to rustdoc manually, but I'm curious about a tool for this. Thanks!
The text was updated successfully, but these errors were encountered: