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
When including parts of a file with #include and anchor is it possible to enable the "show hidden lines" button without showing the whole file as in #rustdoc_include ?
Something along the lines of
// More code//ANCHOR_HIDDEN: foofnmain(){// ANCHOR: foolet x = add_one(2);// ANCHOR_END: fooassert_eq!(x,3);}fnadd_one(num:i32) -> i32{
num + 1}// ANCHOR_HIDDEN_END: foo// More code