-
Notifications
You must be signed in to change notification settings - Fork 526
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
Conversation
mdbook-spec/src/lib.rs
Outdated
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(); | ||
} |
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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.
MD_LINK_REFERENCE_DEFINITION | ||
.replace_all(&chapter.content, |caps: &Captures<'_>| { |
There was a problem hiding this comment.
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.
/// For example: | ||
/// ```markdown | ||
/// See [this rule]. | ||
/// | ||
/// [this rule]: expr.array | ||
/// ``` |
There was a problem hiding this comment.
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.
0c55417
to
f44f16e
Compare
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.
f44f16e
to
f37173d
Compare
This adds the ability to link to rules from a link definition. For example:
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.