Skip to content

Commit e1d7a71

Browse files
committedJan 23, 2023
Auto merge of #14006 - Veykril:markdown-remove-soft-break, r=Veykril
Replace soft breaks in markdown with spaces cc #13988 (comment)
2 parents daa0138 + 84239a1 commit e1d7a71

File tree

1 file changed

+8
-19
lines changed

1 file changed

+8
-19
lines changed
 

‎crates/ide/src/markdown_remove.rs

+8-19
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,8 @@ pub(crate) fn remove_markdown(markdown: &str) -> String {
1111
for event in parser {
1212
match event {
1313
Event::Text(text) | Event::Code(text) => out.push_str(&text),
14-
Event::SoftBreak | Event::HardBreak | Event::Rule | Event::End(Tag::CodeBlock(_)) => {
15-
out.push('\n')
16-
}
14+
Event::SoftBreak => out.push(' '),
15+
Event::HardBreak | Event::Rule | Event::End(Tag::CodeBlock(_)) => out.push('\n'),
1716
Event::End(Tag::Paragraph) => {
1817
out.push('\n');
1918
out.push('\n');
@@ -111,13 +110,9 @@ book] or the [Reference].
111110
expect![[r#"
112111
A function or function pointer.
113112
114-
Functions are the primary way code is executed within Rust. Function blocks, usually just
115-
called functions, can be defined in a variety of different places and be assigned many
116-
different attributes and modifiers.
113+
Functions are the primary way code is executed within Rust. Function blocks, usually just called functions, can be defined in a variety of different places and be assigned many different attributes and modifiers.
117114
118-
Standalone functions that just sit within a module not attached to anything else are common,
119-
but most functions will end up being inside impl blocks, either on another type itself, or
120-
as a trait impl for that type.
115+
Standalone functions that just sit within a module not attached to anything else are common, but most functions will end up being inside impl blocks, either on another type itself, or as a trait impl for that type.
121116
122117
fn standalone_function() {
123118
// code
@@ -140,9 +135,7 @@ book] or the [Reference].
140135
}
141136
}
142137
143-
In addition to presenting fixed types in the form of fn name(arg: type, ..) -> return_type,
144-
functions can also declare a list of type parameters along with trait bounds that they fall
145-
into.
138+
In addition to presenting fixed types in the form of fn name(arg: type, ..) -> return_type, functions can also declare a list of type parameters along with trait bounds that they fall into.
146139
147140
fn generic_function<T: Clone>(x: T) -> (T, T, T) {
148141
(x.clone(), x.clone(), x.clone())
@@ -154,14 +147,10 @@ book] or the [Reference].
154147
x + x + x
155148
}
156149
157-
Declaring trait bounds in the angle brackets is functionally identical to using a where
158-
clause. It's up to the programmer to decide which works better in each situation, but where
159-
tends to be better when things get longer than one line.
150+
Declaring trait bounds in the angle brackets is functionally identical to using a where clause. It's up to the programmer to decide which works better in each situation, but where tends to be better when things get longer than one line.
160151
161-
Along with being made public via pub, fn can also have an extern added for use in
162-
FFI.
152+
Along with being made public via pub, fn can also have an extern added for use in FFI.
163153
164-
For more information on the various types of functions and how they're used, consult the Rust
165-
book or the Reference."#]].assert_eq(&res);
154+
For more information on the various types of functions and how they're used, consult the Rust book or the Reference."#]].assert_eq(&res);
166155
}
167156
}

0 commit comments

Comments
 (0)
Please sign in to comment.