Skip to content

Commit 3962541

Browse files
Rollup merge of #85148 - GuillaumeGomez:source-code-line-number, r=jsha
Fix source code line number display and make it clickable again Fixes #85119. I used the same logic we're using for other codeblocks: putting the line number `<span>`s into the `example-wrap` directly and then add `display: inline-flex` on `example-wrap`. r? `@jsha`
2 parents c7e7de4 + 4e3fb68 commit 3962541

File tree

9 files changed

+40
-19
lines changed

9 files changed

+40
-19
lines changed

src/librustdoc/html/highlight.rs

+12-3
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ crate fn render_with_highlighting(
2424
playground_button: Option<&str>,
2525
tooltip: Option<(Option<Edition>, &str)>,
2626
edition: Edition,
27+
extra_content: Option<Buffer>,
2728
) {
2829
debug!("highlighting: ================\n{}\n==============", src);
2930
if let Some((edition_info, class)) = tooltip {
@@ -39,13 +40,21 @@ crate fn render_with_highlighting(
3940
);
4041
}
4142

42-
write_header(out, class);
43+
write_header(out, class, extra_content);
4344
write_code(out, &src, edition);
4445
write_footer(out, playground_button);
4546
}
4647

47-
fn write_header(out: &mut Buffer, class: Option<&str>) {
48-
writeln!(out, "<div class=\"example-wrap\"><pre class=\"rust {}\">", class.unwrap_or_default());
48+
fn write_header(out: &mut Buffer, class: Option<&str>, extra_content: Option<Buffer>) {
49+
write!(out, "<div class=\"example-wrap\">");
50+
if let Some(extra) = extra_content {
51+
out.push_buffer(extra);
52+
}
53+
if let Some(class) = class {
54+
writeln!(out, "<pre class=\"rust {}\">", class);
55+
} else {
56+
writeln!(out, "<pre class=\"rust\">");
57+
}
4958
}
5059

5160
fn write_code(out: &mut Buffer, src: &str, edition: Edition) {

src/librustdoc/html/markdown.rs

+1
Original file line numberDiff line numberDiff line change
@@ -315,6 +315,7 @@ impl<'a, I: Iterator<Item = Event<'a>>> Iterator for CodeBlocks<'_, 'a, I> {
315315
playground_button.as_deref(),
316316
tooltip,
317317
edition,
318+
None,
318319
);
319320
Some(Event::Html(s.into_inner().into()))
320321
}

src/librustdoc/html/render/print_item.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1026,6 +1026,7 @@ fn item_macro(w: &mut Buffer, cx: &Context<'_>, it: &clean::Item, t: &clean::Mac
10261026
None,
10271027
None,
10281028
it.span(cx.tcx()).inner().edition(),
1029+
None,
10291030
);
10301031
});
10311032
document(w, cx, it, None)

src/librustdoc/html/sources.rs

+5-4
Original file line numberDiff line numberDiff line change
@@ -169,16 +169,17 @@ where
169169
/// adding line numbers to the left-hand side.
170170
fn print_src(buf: &mut Buffer, s: &str, edition: Edition) {
171171
let lines = s.lines().count();
172+
let mut line_numbers = Buffer::empty_from(buf);
172173
let mut cols = 0;
173174
let mut tmp = lines;
174175
while tmp > 0 {
175176
cols += 1;
176177
tmp /= 10;
177178
}
178-
buf.write_str("<pre class=\"line-numbers\">");
179+
line_numbers.write_str("<pre class=\"line-numbers\">");
179180
for i in 1..=lines {
180-
writeln!(buf, "<span id=\"{0}\">{0:1$}</span>", i, cols);
181+
writeln!(line_numbers, "<span id=\"{0}\">{0:1$}</span>", i, cols);
181182
}
182-
buf.write_str("</pre>");
183-
highlight::render_with_highlighting(s, buf, None, None, None, edition);
183+
line_numbers.write_str("</pre>");
184+
highlight::render_with_highlighting(s, buf, None, None, None, edition, Some(line_numbers));
184185
}

src/librustdoc/html/static/rustdoc.css

+5-9
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,6 @@ li {
206206
max-width: none;
207207
overflow: visible;
208208
margin-left: 0px;
209-
min-width: 70em;
210209
}
211210

212211
nav.sub {
@@ -357,7 +356,7 @@ nav.sub {
357356
padding-left: 0;
358357
}
359358

360-
.rustdoc:not(.source) .example-wrap {
359+
.rustdoc .example-wrap {
361360
display: inline-flex;
362361
margin-bottom: 10px;
363362
}
@@ -370,8 +369,6 @@ nav.sub {
370369
.example-wrap > pre.line-number {
371370
overflow: initial;
372371
border: 1px solid;
373-
border-top-left-radius: 5px;
374-
border-bottom-left-radius: 5px;
375372
padding: 13px 8px;
376373
text-align: right;
377374
}
@@ -381,7 +378,7 @@ nav.sub {
381378
overflow-x: auto;
382379
}
383380

384-
.rustdoc:not(.source) .example-wrap > pre {
381+
.rustdoc .example-wrap > pre {
385382
margin: 0;
386383
}
387384

@@ -395,15 +392,14 @@ nav.sub {
395392
table-layout: fixed;
396393
}
397394

398-
.content pre.line-numbers {
399-
float: left;
400-
border: none;
395+
.content > .example-wrap pre.line-numbers {
401396
position: relative;
402-
403397
-webkit-user-select: none;
404398
-moz-user-select: none;
405399
-ms-user-select: none;
406400
user-select: none;
401+
border-top-left-radius: 5px;
402+
border-bottom-left-radius: 5px;
407403
}
408404
.line-numbers span {
409405
cursor: pointer;

src/librustdoc/html/static/themes/ayu.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ span code {
5353
.docblock code, .docblock-short code {
5454
background-color: #191f26;
5555
}
56-
pre {
56+
pre, .rustdoc.source .example-wrap {
5757
color: #e6e1cf;
5858
background-color: #191f26;
5959
}

src/librustdoc/html/static/themes/dark.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ h4:not(.method):not(.type):not(.tymethod) {
2626
.docblock code, .docblock-short code {
2727
background-color: #2A2A2A;
2828
}
29-
pre {
29+
pre, .rustdoc.source .example-wrap {
3030
background-color: #2A2A2A;
3131
}
3232

src/librustdoc/html/static/themes/light.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ h4:not(.method):not(.type):not(.tymethod) {
2828
.docblock code, .docblock-short code {
2929
background-color: #F5F5F5;
3030
}
31-
pre {
31+
pre, .rustdoc.source .example-wrap {
3232
background-color: #F5F5F5;
3333
}
3434

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
goto: file://|DOC_PATH|/../src/test_docs/lib.rs.html
2+
// Check that we can click on the line number.
3+
click: (40, 224) // This is the position of the span for line 4.
4+
// Unfortunately, "#4" isn't a valid query selector, so we have to go around that limitation
5+
// by instead getting the nth span.
6+
assert: (".line-numbers > span:nth-child(4)", "class", "line-highlighted")
7+
// We now check that the good spans are highlighted
8+
goto: file://|DOC_PATH|/../src/test_docs/lib.rs.html#4-6
9+
assert-false: (".line-numbers > span:nth-child(3)", "class", "line-highlighted")
10+
assert: (".line-numbers > span:nth-child(4)", "class", "line-highlighted")
11+
assert: (".line-numbers > span:nth-child(5)", "class", "line-highlighted")
12+
assert: (".line-numbers > span:nth-child(6)", "class", "line-highlighted")
13+
assert-false: (".line-numbers > span:nth-child(7)", "class", "line-highlighted")

0 commit comments

Comments
 (0)