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
within any span of code that is being rendered, the item following this should become hidden. This item could itself contain #[docify::export], so you could do:
#[docify::export]
fn foo() {
let a = 10;
#[docify::hidden] // makes this item hidden in the parent
#[docify::export] // makes this item individually reachable via `#[docify::embed("..", bar)]`
let bar = 15;
}
The text was updated successfully, but these errors were encountered:
First portion of this is adding support for #[docify::export] on expr-position items via outer macro pattern of the enclosing #[docify::export] on the parent, then we can hit the other stuff once that capability is in place.
within any span of code that is being rendered, the item following this should become hidden. This item could itself contain
#[docify::export]
, so you could do:The text was updated successfully, but these errors were encountered: