Simple mdBook i18n plugin.
It requires mdbook >= 0.3.1.
# cargo install mdbook
# cargo install mdbook-i18n
- Add
language
tobook
section in yourbook.toml
. - Add
output.i18n.translations
table to yourbook.toml
. Every record in this table must containslanguage
andtitle
. Also records can contains fieldsauthors
(must be array),translators
(also must be array),description
andsrc
. Ifsrc
not present in record, then this field creates as<book's root>/translations/<language name>
. - Write translations.
- Run
mdbook build
for build all books. Every book saves in destination directory in folder with locale name.
Source book from config converts to translation config. Common configs shares between all
translations. After that mdbook
runs for every translation.
- Custom values from main config don't send to mdbook config. For now this project used native
RenderContext
what have privaterest
field inconfig
(this field contains custom values from config). - Books don't share assets. Because native render of mdbook can build only one build, every build generate full tree of assets.
- Books don't has links to different l10n. Because used native render without custom templates.
- Maybe everything else what i forget.