Skip to content

Commit 17bff74

Browse files
committed
rustdoc: properly handle path wrapping
1 parent 0bb0f30 commit 17bff74

File tree

6 files changed

+21
-5
lines changed

6 files changed

+21
-5
lines changed

src/librustdoc/html/escape.rs

+5
Original file line numberDiff line numberDiff line change
@@ -107,12 +107,17 @@ impl<'a> fmt::Display for EscapeBodyTextWithWbr<'a> {
107107
let next_is_uppercase =
108108
|| pk.map_or(true, |(_, t)| t.chars().any(|c| c.is_uppercase()));
109109
let next_is_underscore = || pk.map_or(true, |(_, t)| t.contains('_'));
110+
let next_is_colon = || pk.map_or(true, |(_, t)| t.contains(':'));
110111
if (i - last > 3 && is_uppercase() && !next_is_uppercase())
111112
|| (s.contains('_') && !next_is_underscore())
112113
{
113114
EscapeBodyText(&text[last..i]).fmt(fmt)?;
114115
fmt.write_str("<wbr>")?;
115116
last = i;
117+
} else if s.contains(':') && !next_is_colon() {
118+
EscapeBodyText(&text[last..i + 1]).fmt(fmt)?;
119+
fmt.write_str("<wbr>")?;
120+
last = i + 1;
116121
}
117122
}
118123
if last < text.len() {

src/librustdoc/html/escape/tests.rs

+8-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ fn escape_body_text_with_wbr() {
66
assert_eq!(&E("").to_string(), "");
77
assert_eq!(&E("a").to_string(), "a");
88
assert_eq!(&E("A").to_string(), "A");
9+
assert_eq!(&E("_").to_string(), "_");
10+
assert_eq!(&E(":").to_string(), ":");
11+
assert_eq!(&E(" ").to_string(), " ");
12+
assert_eq!(&E("___________").to_string(), "___________");
13+
assert_eq!(&E(":::::::::::").to_string(), ":::::::::::");
14+
assert_eq!(&E(" ").to_string(), " ");
915
// real(istic) examples
1016
assert_eq!(&E("FirstSecond").to_string(), "First<wbr>Second");
1117
assert_eq!(&E("First_Second").to_string(), "First<wbr>_Second");
@@ -15,8 +21,9 @@ fn escape_body_text_with_wbr() {
1521
assert_eq!(&E("First SecondThird").to_string(), "First Second<wbr>Third");
1622
assert_eq!(&E("First<T>_Second").to_string(), "First&lt;<wbr>T&gt;<wbr>_Second");
1723
assert_eq!(&E("first_second").to_string(), "first<wbr>_second");
24+
assert_eq!(&E("first:second").to_string(), "first:<wbr>second");
25+
assert_eq!(&E("first::second").to_string(), "first::<wbr>second");
1826
assert_eq!(&E("MY_CONSTANT").to_string(), "MY<wbr>_CONSTANT");
19-
assert_eq!(&E("___________").to_string(), "___________");
2027
// a string won't get wrapped if it's less than 8 bytes
2128
assert_eq!(&E("HashSet").to_string(), "HashSet");
2229
// an individual word won't get wrapped if it's less than 4 bytes

src/librustdoc/html/render/print_item.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -558,7 +558,7 @@ fn extra_info_tags<'a, 'tcx: 'a>(
558558
display_fn(move |f| {
559559
write!(
560560
f,
561-
r#"<span class="stab {class}" title="{title}">{contents}</span>"#,
561+
r#"<wbr><span class="stab {class}" title="{title}">{contents}</span>"#,
562562
title = Escape(title),
563563
)
564564
})

src/librustdoc/html/static/css/rustdoc.css

+4-1
Original file line numberDiff line numberDiff line change
@@ -586,12 +586,15 @@ ul.block, .block li {
586586
}
587587

588588
.sidebar h2 {
589+
text-wrap: balance;
589590
overflow-wrap: anywhere;
590591
padding: 0;
591592
margin: 0.7rem 0;
592593
}
593594

594595
.sidebar h3 {
596+
text-wrap: balance;
597+
overflow-wrap: anywhere;
595598
font-size: 1.125rem; /* 18px */
596599
padding: 0;
597600
margin: 0;
@@ -2222,7 +2225,7 @@ in src-script.js and main.js
22222225
width: 33%;
22232226
}
22242227
.item-table > li > div {
2225-
word-break: break-all;
2228+
overflow-wrap: anywhere;
22262229
}
22272230
}
22282231

src/librustdoc/html/templates/sidebar.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ <h3><a href="#{{block.heading.href|safe}}"> {# #}
3131
</section>
3232
{% endif %}
3333
{% if !path.is_empty() %}
34-
<h2><a href="{% if is_mod %}../{% endif %}index.html">In {{+ path}}</a></h2>
34+
<h2><a href="{% if is_mod %}../{% endif %}index.html">In {{+ path|wrapped|safe}}</a></h2>
3535
{% endif %}
3636
</div>

tests/rustdoc-gui/label-next-to-symbol.goml

+2-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ compare-elements-position-near: (
2727
".item-name .stab.deprecated",
2828
{"y": 2},
2929
)
30-
compare-elements-position: (
30+
// "Unix" part is on second line
31+
compare-elements-position-false: (
3132
".item-name .stab.deprecated",
3233
".item-name .stab.portability",
3334
["y"],

0 commit comments

Comments
 (0)