We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4e7752 commit 07a290bCopy full SHA for 07a290b
site/src/github/comparison_summary.rs
@@ -185,8 +185,9 @@ async fn summarize_run(
185
.collect::<Vec<_>>()
186
.join("\n");
187
let alert_row = ":exclamation: ".repeat(5);
188
+ // second \n before `alert_row` needed or markdown will render this as appended to last li
189
format!(
- "\n{alert_row}\n**Warning :warning:**: The following benchmark(s) failed to build:\n{benchmarks}\n{alert_row}\n"
190
+ "\n{alert_row}\n**Warning :warning:**: The following benchmark(s) failed to build:\n{benchmarks}\n\n{alert_row}\n"
191
)
192
} else {
193
String::new()
0 commit comments