File tree 1 file changed +21
-0
lines changed
1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -569,6 +569,7 @@ fn stringify_events(events: Vec<Event<'_>>) -> String {
569
569
. into_iter ( )
570
570
. filter_map ( |t| match t {
571
571
Event :: Text ( text) | Event :: Code ( text) => Some ( text. into_string ( ) ) ,
572
+ Event :: SoftBreak => Some ( String :: from ( " " ) ) ,
572
573
_ => None ,
573
574
} )
574
575
. collect ( )
@@ -926,4 +927,24 @@ mod tests {
926
927
927
928
assert_eq ! ( got, should_be) ;
928
929
}
930
+
931
+ /// Regression test for https://github.com/rust-lang/mdBook/issues/1218
932
+ /// Ensure chapter names spread across multiple lines have spaces between all the words.
933
+ #[ test]
934
+ fn add_space_for_multi_line_chapter_names ( ) {
935
+ let src = "- [Chapter\n title](./chapter.md)" ;
936
+ let should_be = vec ! [ SummaryItem :: Link ( Link {
937
+ name: String :: from( "Chapter title" ) ,
938
+ location: Some ( PathBuf :: from( "./chapter.md" ) ) ,
939
+ number: Some ( SectionNumber ( vec![ 1 ] ) ) ,
940
+ nested_items: Vec :: new( ) ,
941
+ } ) ] ;
942
+
943
+ let mut parser = SummaryParser :: new ( src) ;
944
+ let got = parser
945
+ . parse_numbered ( & mut 0 , & mut SectionNumber :: default ( ) )
946
+ . unwrap ( ) ;
947
+
948
+ assert_eq ! ( got, should_be) ;
949
+ }
929
950
}
You can’t perform that action at this time.
0 commit comments