Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add the ability for rules to be specified in link definitions #1775

Merged
merged 2 commits into from
Apr 1, 2025

Conversation

ehuss
Copy link
Contributor

@ehuss ehuss commented Mar 30, 2025

This adds the ability to link to rules from a link definition. For example:

See [this rule].

[this rule]: expr.array

This will convert [this rule] to point to the link of the file for that rule.

This is somewhat hacky, as parsing markdown with regex is unwise (and this is intentionally incomplete), and could maybe be done more efficiently.

I don't have an immediate need for this, but I have wanted this a few times in the past.

@rustbot rustbot added the S-waiting-on-review Status: The marked PR is awaiting review from a maintainer label Mar 30, 2025
Comment on lines 136 to 144
if let Some((_source_path, path)) = rules.def_paths.get(dest) {
let label = &caps["label"];
let relative = pathdiff::diff_paths(path, current_path).unwrap();
// Adjust paths for Windows.
let relative = relative.display().to_string().replace('\\', "/");
return format!("[{label}]: {relative}#r-{dest}");
} else {
return caps.get(0).unwrap().as_str().to_string();
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since all branches diverge, it makes sense to move the return outward. Will update.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actually, of course, here we don't need the return at all.

Comment on lines +133 to +134
MD_LINK_REFERENCE_DEFINITION
.replace_all(&chapter.content, |caps: &Captures<'_>| {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is OK of course, but as you mention, it'd be better to do it otherwise. Remind me to ask you sometime about what the challenges are here.

Comment on lines +123 to +128
/// For example:
/// ```markdown
/// See [this rule].
///
/// [this rule]: expr.array
/// ```
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm adding an example use of this to introduction page also.

ehuss and others added 2 commits April 1, 2025 22:31
This adds the ability to link to rules from a link definition. For example:

```markdown
See [this rule].

[this rule]: expr.array
```

This will convert `[this rule]` to point to the link of the file for
that rule.

This is somewhat hacky, as parsing markdown with regex is unwise (and
this is intentionally incomplete), and could maybe be done more
efficiently.
On the introduction page, where we talk about rule identifiers, let's
add an example use of putting the rule identifier in the link
definition so that we have an easy way of verifying that this
mechanism works as intended.
@traviscross traviscross added this pull request to the merge queue Apr 1, 2025
Merged via the queue into rust-lang:master with commit e665505 Apr 1, 2025
5 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
S-waiting-on-review Status: The marked PR is awaiting review from a maintainer
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants