forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#126247 - notriddle:notriddle/word-wrap-item-table, r=GuillaumeGomez rustdoc: word wrap CamelCase in the item list table and sidebar This is an alternative to rust-lang#126209. That is, it fixes the issue that affects the very long type names in https://docs.rs/async-stripe/0.31.0/stripe/index.html#structs. This is, necessarily, a pile of nasty heuristics. We need to balance a few issues: - Sometimes, there's no real word break. For example, `BTreeMap` should be `BTree<wbr>Map`, not `B<wbr>Tree<wbr>Map`. - Sometimes, there's a legit word break, but the name is tiny and the HTML overhead isn't worth it. For example, if we're typesetting `TyCtx`, writing `Ty<wbr>Ctx` would have an HTML overhead of 50%. Line breaking inside it makes no sense. # Screenshots | Before | After | | ------ | ----- | | ![image](https://github.com/rust-lang/rust/assets/1593513/d51201fd-46c0-4f48-aee6-a477eadba288) | ![image](https://github.com/rust-lang/rust/assets/1593513/d8e77582-adcf-4966-bbfd-19dfdad7336a)
- Loading branch information
Showing
26 changed files
with
208 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
// basic examples | ||
#[test] | ||
fn escape_body_text_with_wbr() { | ||
use super::EscapeBodyTextWithWbr as E; | ||
// extreme corner cases | ||
assert_eq!(&E("").to_string(), ""); | ||
assert_eq!(&E("a").to_string(), "a"); | ||
assert_eq!(&E("A").to_string(), "A"); | ||
assert_eq!(&E("_").to_string(), "_"); | ||
assert_eq!(&E(":").to_string(), ":"); | ||
assert_eq!(&E(" ").to_string(), " "); | ||
assert_eq!(&E("___________").to_string(), "___________"); | ||
assert_eq!(&E(":::::::::::").to_string(), ":::::::::::"); | ||
assert_eq!(&E(" ").to_string(), " "); | ||
// real(istic) examples | ||
assert_eq!(&E("FirstSecond").to_string(), "First<wbr>Second"); | ||
assert_eq!(&E("First_Second").to_string(), "First_<wbr>Second"); | ||
assert_eq!(&E("First Second").to_string(), "First Second"); | ||
assert_eq!(&E("First HSecond").to_string(), "First HSecond"); | ||
assert_eq!(&E("First HTTPSecond").to_string(), "First HTTP<wbr>Second"); | ||
assert_eq!(&E("First SecondThird").to_string(), "First Second<wbr>Third"); | ||
assert_eq!(&E("First<T>_Second").to_string(), "First<<wbr>T>_<wbr>Second"); | ||
assert_eq!(&E("first_second").to_string(), "first_<wbr>second"); | ||
assert_eq!(&E("first:second").to_string(), "first:<wbr>second"); | ||
assert_eq!(&E("first::second").to_string(), "first::<wbr>second"); | ||
assert_eq!(&E("MY_CONSTANT").to_string(), "MY_<wbr>CONSTANT"); | ||
// a string won't get wrapped if it's less than 8 bytes | ||
assert_eq!(&E("HashSet").to_string(), "HashSet"); | ||
// an individual word won't get wrapped if it's less than 4 bytes | ||
assert_eq!(&E("VecDequeue").to_string(), "VecDequeue"); | ||
assert_eq!(&E("VecDequeueSet").to_string(), "VecDequeue<wbr>Set"); | ||
// how to handle acronyms | ||
assert_eq!(&E("BTreeMap").to_string(), "BTree<wbr>Map"); | ||
assert_eq!(&E("HTTPSProxy").to_string(), "HTTPS<wbr>Proxy"); | ||
// more corners | ||
assert_eq!(&E("ṼẽçÑñéå").to_string(), "Ṽẽç<wbr>Ññéå"); | ||
assert_eq!(&E("V\u{0300}e\u{0300}c\u{0300}D\u{0300}e\u{0300}q\u{0300}u\u{0300}e\u{0300}u\u{0300}e\u{0300}").to_string(), "V\u{0300}e\u{0300}c\u{0300}<wbr>D\u{0300}e\u{0300}q\u{0300}u\u{0300}e\u{0300}u\u{0300}e\u{0300}"); | ||
assert_eq!(&E("LPFNACCESSIBLEOBJECTFROMWINDOW").to_string(), "LPFNACCESSIBLEOBJECTFROMWINDOW"); | ||
} | ||
// property test | ||
#[test] | ||
fn escape_body_text_with_wbr_makes_sense() { | ||
use itertools::Itertools as _; | ||
|
||
use super::EscapeBodyTextWithWbr as E; | ||
const C: [u8; 3] = [b'a', b'A', b'_']; | ||
for chars in [ | ||
C.into_iter(), | ||
C.into_iter(), | ||
C.into_iter(), | ||
C.into_iter(), | ||
C.into_iter(), | ||
C.into_iter(), | ||
C.into_iter(), | ||
C.into_iter(), | ||
] | ||
.into_iter() | ||
.multi_cartesian_product() | ||
{ | ||
let s = String::from_utf8(chars).unwrap(); | ||
assert_eq!(s.len(), 8); | ||
let esc = E(&s).to_string(); | ||
assert!(!esc.contains("<wbr><wbr>")); | ||
assert!(!esc.ends_with("<wbr>")); | ||
assert!(!esc.starts_with("<wbr>")); | ||
assert_eq!(&esc.replace("<wbr>", ""), &s); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.