-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Render diagrams on inner doc-comments (when custom_inner_attribute lands) #5
Comments
I'm not sure that's even possible to do with attribute macros. Maybe with |
Is there a workaround for this issue? I have a use case for a diagram that only makes sense on the entry point of the documentation. |
I did investigate a bit, trying to produce a prototype implementation for generating inner attributes, but it doesn't seem to be possible at all on the current Rust.
@zbraniecki the only workaround I can think of is to do what the macro does by hand, but I wouldn't recommend that. |
custom_inner_attribute
lands)
custom_inner_attribute
lands)
@zbraniecki Did you find a suitable workaround? |
One workaround is that it's possible to document modules in two different places:
The 2nd option works; however, it requires the unstable #[cfg_attr(doc, feature(proc_macro_hygiene))]
#[cfg_attr(doc, aquamarine::aquamarine)]
/// The configuration module.
///
/// ```mermaid
/// graph LR
/// s([Source]) --> a[[aquamarine]]
/// r[[rustdoc]] --> f([Docs w/ Mermaid!])
/// subgraph rustc[Rust Compiler]
/// a -. inject mermaid.js .-> r
/// end
/// ```
pub mod config; Or with the re-export workaround: mod config_internal;
#[cfg_attr(doc, aquamarine::aquamarine)]
/// The configuration module.
///
/// ```mermaid
/// graph LR
/// s([Source]) --> a[[aquamarine]]
/// r[[rustdoc]] --> f([Docs w/ Mermaid!])
/// subgraph rustc[Rust Compiler]
/// a -. inject mermaid.js .-> r
/// end
/// ```
pub mod config {
pub use crate::config_internal::*;
} Unfortunately this can be a bit messy if there are a lot of modules because all of their docs live in the same file. I'm not aware of any other workaround. Edit: I found one more workaround that allow separating the module docs into separate files. I like this one because it doesn't require re-naming modules:
mod config_impl;
pub use config_impl::exports as config;
#[cfg_attr(doc, aquamarine::aquamarine)]
/// The configuration module.
///
/// ```mermaid
/// graph LR
/// s([Source]) --> a[[aquamarine]]
/// r[[rustdoc]] --> f([Docs w/ Mermaid!])
/// subgraph rustc[Rust Compiler]
/// a -. inject mermaid.js .-> r
/// end
/// ```
pub mod exports {
pub use super::*;
}
/// This is a config object
pub struct Config; The idea is that each public module is actually private and has a public wrapper that provides documentation. |
support inner doc would be really nice |
For anyone else who needs mermaid in the top level, no compromise, you can check out the crate simple_mermaid: https://github.com/glueball/simple-mermaid It supports top-level mermaid diagrams with the only disadvantage being needing to make the diagrams separate files. Perhaps this project could adopt a similar approach to allow in-file top level diagrams? For now though, I am going to have to use that crate because it better supports my needs. |
@joeyame How do you accomplish mermaid in the top level with simple_mermaid? |
Just like this: //! # Brief Overview
//! The following diagram is a simple overview of how Parrhesia is used.
#![ doc=mermaid!( "diagrams/overall_form.mmd" ) ] Then, for non - top level, remove the exclamation |
Thanks! I was doing //! # Brief Overview
//! The following diagram is a simple overview of how Parrhesia is used.
#[ doc=mermaid!( "diagrams/overall_form.mmd" ) ] i.e. no |
@joeyame great little crate, I love the simplicity. Hopefully one day I'll be able to support inner docs too, hehe. Thanks for pointing out the aquamarine deficiency regarding filesystem-stored diagrams in your readme, btw, I've fixed it in 0.4.0. |
Currently is not possible to have diagrams at the inner doc comments, e.g.:
lib.rs
:since there can't be anything before the module-level doc-comment block...
The text was updated successfully, but these errors were encountered: