@@ -420,8 +420,6 @@ pub struct BookConfig {
420420 pub description : Option < String > ,
421421 /// Location of the book source relative to the book's root directory.
422422 pub src : PathBuf ,
423- /// Does this book support more than one language?
424- pub multilingual : bool ,
425423 /// The main language of the book.
426424 pub language : Option < String > ,
427425 /// The direction of text in the book: Left-to-right (LTR) or Right-to-left (RTL).
@@ -436,7 +434,6 @@ impl Default for BookConfig {
436434 authors : Vec :: new ( ) ,
437435 description : None ,
438436 src : PathBuf :: from ( "src" ) ,
439- multilingual : false ,
440437 language : Some ( String :: from ( "en" ) ) ,
441438 text_direction : None ,
442439 }
@@ -820,7 +817,6 @@ mod tests {
820817 title = "Some Book"
821818 authors = ["Michael-F-Bryan <michaelfbryan@gmail.com>"]
822819 description = "A completely useless book"
823- multilingual = true
824820 src = "source"
825821 language = "ja"
826822
@@ -859,7 +855,6 @@ mod tests {
859855 title : Some ( String :: from ( "Some Book" ) ) ,
860856 authors : vec ! [ String :: from( "Michael-F-Bryan <michaelfbryan@gmail.com>" ) ] ,
861857 description : Some ( String :: from ( "A completely useless book" ) ) ,
862- multilingual : true ,
863858 src : PathBuf :: from ( "source" ) ,
864859 language : Some ( String :: from ( "ja" ) ) ,
865860 text_direction : None ,
0 commit comments