-
Notifications
You must be signed in to change notification settings - Fork 527
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
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,6 +24,10 @@ static ADMONITION_RE: Lazy<Regex> = Lazy::new(|| { | |
Regex::new(r"(?m)^ *> \[!(?<admon>[^]]+)\]\n(?<blockquote>(?: *>.*\n)+)").unwrap() | ||
}); | ||
|
||
/// A primitive regex to find link reference definitions. | ||
static MD_LINK_REFERENCE_DEFINITION: Lazy<Regex> = | ||
Lazy::new(|| Regex::new(r"(?m)^\[(?<label>[^]]+)]: (?<dest>.*)").unwrap()); | ||
|
||
pub fn handle_preprocessing() -> Result<(), Error> { | ||
let pre = Spec::new(None)?; | ||
let (ctx, book) = CmdPreprocessor::parse_input(io::stdin())?; | ||
|
@@ -114,6 +118,34 @@ impl Spec { | |
Ok(Spec { rust_root }) | ||
} | ||
|
||
/// Converts link reference definitions that point to a rule to the correct link. | ||
/// | ||
/// For example: | ||
/// ```markdown | ||
/// See [this rule]. | ||
/// | ||
/// [this rule]: expr.array | ||
/// ``` | ||
/// | ||
/// This will convert the `[this rule]` definition to point to the actual link. | ||
fn rule_link_references(&self, chapter: &Chapter, rules: &Rules) -> String { | ||
let current_path = chapter.path.as_ref().unwrap().parent().unwrap(); | ||
MD_LINK_REFERENCE_DEFINITION | ||
.replace_all(&chapter.content, |caps: &Captures<'_>| { | ||
Comment on lines
+133
to
+134
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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. |
||
let dest = &caps["dest"]; | ||
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('\\', "/"); | ||
format!("[{label}]: {relative}#r-{dest}") | ||
} else { | ||
caps.get(0).unwrap().as_str().to_string() | ||
} | ||
}) | ||
.to_string() | ||
} | ||
|
||
/// Generates link references to all rules on all pages, so you can easily | ||
/// refer to rules anywhere in the book. | ||
fn auto_link_references(&self, chapter: &Chapter, rules: &Rules) -> String { | ||
|
@@ -255,6 +287,7 @@ impl Preprocessor for Spec { | |
return; | ||
} | ||
ch.content = self.admonitions(&ch, &mut diag); | ||
ch.content = self.rule_link_references(&ch, &rules); | ||
ch.content = self.auto_link_references(&ch, &rules); | ||
ch.content = self.render_rule_definitions(&ch.content, &tests, &git_ref); | ||
if ch.name == "Test summary" { | ||
|
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.