-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use the new module information for intra-doc links
- Make the parent module conditional on whether the docs are on a re-export - Make `resolve_link` take `&Item` instead of `&mut Item` Previously the borrow checker gave an error about multiple mutable borrows, because `dox` borrowed from `item`. - Fix `crate::` for re-exports `crate` means something different depending on where the attribute came from. - Make it work for `#[doc]` attributes too This required combining several attributes as one so they would keep the links.
- Loading branch information
Showing
2 changed files
with
84 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#![crate_name = "foo"] | ||
|
||
// @has foo/struct.JoinPathsError.html '//a[@href="../foo/fn.with_code.html"]' 'crate::with_code' | ||
/// [crate::with_code] | ||
// @has - '//a[@href="../foo/fn.with_code.html"]' 'different text' | ||
/// [different text][with_code] | ||
// @has - '//a[@href="../foo/fn.me_too.html"]' 'me_too' | ||
#[doc = "[me_too]"] | ||
// @has - '//a[@href="../foo/fn.me_three.html"]' 'reference link' | ||
/// This [reference link] | ||
#[doc = "has an attr in the way"] | ||
/// | ||
/// [reference link]: me_three | ||
pub use std::env::JoinPathsError; | ||
|
||
pub fn with_code() {} | ||
pub fn me_too() {} | ||
pub fn me_three() {} |