mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
Fix invalid removal of backlines from doc comments
This commit is contained in:
parent
60f3bd78ee
commit
ee97600a6f
@ -34,18 +34,11 @@ pub fn beautify_doc_string(data: Symbol) -> Symbol {
|
||||
i += 1;
|
||||
}
|
||||
|
||||
while i < j && lines[i].trim().is_empty() {
|
||||
i += 1;
|
||||
}
|
||||
// like the first, a last line of all stars should be omitted
|
||||
if j > i && !lines[j - 1].is_empty() && lines[j - 1].chars().all(|c| c == '*') {
|
||||
j -= 1;
|
||||
}
|
||||
|
||||
while j > i && lines[j - 1].trim().is_empty() {
|
||||
j -= 1;
|
||||
}
|
||||
|
||||
if i != 0 || j != lines.len() { Some((i, j)) } else { None }
|
||||
}
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
<div class="docblock"><p>Hello world!
|
||||
Goodbye!
|
||||
<div class="docblock"><p>Hello world!</p>
|
||||
<p>Goodbye!
|
||||
Hello again!</p>
|
||||
</div>
|
Loading…
Reference in New Issue
Block a user