You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/handlers/note.rs
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
//! Users can make a new summary entry by commenting the following:
4
4
//!
5
5
//! ```md
6
-
//! @rustbot note summary-title
6
+
//! @rustbot note Summary title
7
7
//! ```
8
8
//!
9
9
//! If this is the first summary entry, rustbot will amend the original post (the top-level comment) to add a "Notes" section. The section should **not** be edited by hand.
@@ -13,7 +13,7 @@
13
13
//!
14
14
//! ### Summary Notes
15
15
//!
16
-
//! - ["summary-title" by @username](link-to-comment)
16
+
//! - [Summary title](link-to-comment) by [username](https://github.com/<username>)
17
17
//!
18
18
//! Generated by triagebot, see [help](https://forge.rust-lang.org/triagebot/note.html) for how to add more
19
19
//! <!-- TRIAGEBOT_SUMMARY_END -->
@@ -26,9 +26,9 @@
26
26
//!
27
27
//! ### Summary Notes
28
28
//!
29
-
//! - ["first-note" by @username](link-to-comment)
30
-
//! - ["second-note" by @username](link-to-comment)
31
-
//! - ["summary-title" by @username](link-to-comment)
29
+
//! - [First note](link-to-comment) by [username](https://github.com/<username>)
30
+
//! - [Second note](link-to-comment) by [username](https://github.com/<username>)
31
+
//! - [Summary title](link-to-comment) by [username](https://github.com/<username>)
32
32
//!
33
33
//! <!-- TRIAGEBOT_SUMMARY_END -->
34
34
//! ```
@@ -50,7 +50,7 @@ struct NoteDataEntry {
50
50
implNoteDataEntry{
51
51
pub(crate)fnto_markdown(&self) -> String{
52
52
format!(
53
-
"\n- [\"{title}\" by @{author}]({comment_url})",
53
+
"\n- [{title}]({comment_url}) by [{author}](https://github.com/{author})",
0 commit comments