rust-lang / mdBook

Create book from markdown files. Like Gitbook but implemented in Rust
https://rust-lang.github.io/mdBook/
Mozilla Public License 2.0
17.63k stars 1.61k forks source link

Multilingual mdbook structure #2167

Closed lauraluebbert closed 1 year ago

lauraluebbert commented 1 year ago

Question

Hi, I am trying to implement a multilingual mdBook using the structure described here. However, when deploying, I get the following error:

[ERROR] (mdbook::utils): Error: Couldn't open SUMMARY.md in "/home/runner/work/gget/gget/docs/src" directory

Could somebody please help me find the current structure used to build multilingual books? Thank you!

Version

v0.4.14
ehuss commented 1 year ago

mdbook doesn't have built-in support for multiple languages. You'll need a separate book per language.

There are some third-party plugins to assist with setting up multi-lingual books, see https://github.com/rust-lang/mdBook/wiki/Third-party-plugins (such as https://github.com/google/mdbook-i18n-helpers).

lauraluebbert commented 1 year ago

Ok, thank you!