I am writing a documentation for crate
and I noticed I am having lot's references like this:
/// A struct [`MyStruct`][`modA::subB::subC::MyStruct`] is very beautiful.
Is there a way to bring module subC
into scope within the doc comment? It would be wonderful if I could write something like:
/// #[use modA::subB::subC::MyStruct];
/// A struct [`MyStruct`] is very beautiful.
Is there something like that?