We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b4f88a commit a37b4e6Copy full SHA for a37b4e6
tools/agenda-generator/src/generator.rs
@@ -25,6 +25,10 @@ fn shorten(url: &str) -> String {
25
format!("rust.tf/rfc{num}")
26
} else if let Some(num) = url.strip_prefix("https://github.com/rust-lang/rfcs/pull/") {
27
28
+ } else if let Some(num) = url.strip_prefix("https://github.com/rust-lang/libs-team/issues/") {
29
+ format!("rust.tf/libs{num}")
30
+ } else if let Some(num) = url.strip_prefix("https://github.com/rust-lang/libs-team/pull/") {
31
32
} else if let Some(url) = url.strip_prefix("https://") {
33
url.to_string()
34
} else {
0 commit comments