-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Preserve suffixes when displaying - Rename test file to match `intra-link*` - Remove unnecessary .clone()s - Improve comments and naming - Fix more bugs and add tests - Escape intra-doc link example in public documentation
- Loading branch information
Showing
5 changed files
with
114 additions
and
63 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
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 was deleted.
Oops, something went wrong.
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,51 @@ | ||
// ignore-tidy-linelength | ||
#![deny(intra_doc_link_resolution_failure)] | ||
// first try backticks | ||
/// Trait: [`trait@Name`], fn: [`fn@Name`], [`Name`][`macro@Name`] | ||
// @has intra_link_disambiguators_removed/struct.AtDisambiguator.html | ||
// @has - '//a[@href="../intra_link_disambiguators_removed/trait.Name.html"][code]' "Name" | ||
// @has - '//a[@href="../intra_link_disambiguators_removed/fn.Name.html"][code]' "Name" | ||
// @has - '//a[@href="../intra_link_disambiguators_removed/macro.Name.html"][code]' "Name" | ||
pub struct AtDisambiguator; | ||
|
||
/// fn: [`Name()`], macro: [`Name!`] | ||
// @has intra_link_disambiguators_removed/struct.SymbolDisambiguator.html | ||
// @has - '//a[@href="../intra_link_disambiguators_removed/fn.Name.html"][code]' "Name()" | ||
// @has - '//a[@href="../intra_link_disambiguators_removed/macro.Name.html"][code]' "Name!" | ||
pub struct SymbolDisambiguator; | ||
|
||
// Now make sure that backticks aren't added if they weren't already there | ||
/// [fn@Name] | ||
// @has intra_link_disambiguators_removed/trait.Name.html | ||
// @has - '//a[@href="../intra_link_disambiguators_removed/fn.Name.html"]' "Name" | ||
// @!has - '//a[@href="../intra_link_disambiguators_removed/fn.Name.html"][code]' "Name" | ||
|
||
// FIXME: this will turn !() into ! alone | ||
/// [Name!()] | ||
// @has - '//a[@href="../intra_link_disambiguators_removed/macro.Name.html"]' "Name!" | ||
pub trait Name {} | ||
|
||
#[allow(non_snake_case)] | ||
|
||
// Try collapsed reference links | ||
/// [macro@Name][] | ||
// @has intra_link_disambiguators_removed/fn.Name.html | ||
// @has - '//a[@href="../intra_link_disambiguators_removed/macro.Name.html"]' "Name" | ||
|
||
// Try links that have the same text as a generated URL | ||
/// Weird URL aligned [../intra_link_disambiguators_removed/macro.Name.html][trait@Name] | ||
// @has - '//a[@href="../intra_link_disambiguators_removed/trait.Name.html"]' "../intra_link_disambiguators_removed/macro.Name.html" | ||
pub fn Name() {} | ||
|
||
#[macro_export] | ||
// Rustdoc doesn't currently handle links that have weird interspersing of inline code blocks. | ||
/// [fn@Na`m`e] | ||
// @has intra_link_disambiguators_removed/macro.Name.html | ||
// @has - '//a[@href="../intra_link_disambiguators_removed/fn.Name.html"]' "fn@Name" | ||
|
||
// It also doesn't handle any case where the code block isn't the whole link text: | ||
/// [trait@`Name`] | ||
// @has - '//a[@href="../intra_link_disambiguators_removed/trait.Name.html"]' "trait@Name" | ||
macro_rules! Name { | ||
() => () | ||
} |