4 releases
0.1.3 | Mar 18, 2023 |
---|---|
0.1.2 | Oct 4, 2022 |
0.1.1 | Mar 28, 2020 |
0.1.0 | Sep 6, 2019 |
#157 in Internationalization (i18n)
18KB
168 lines
mdBook-i18n
Simple mdBook i18n plugin.
Installation
It requires mdbook >= 0.3.1.
# cargo install mdbook
# cargo install mdbook-i18n
Usage
- 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.
How it works?
Source book from config converts to translation config. Common configs shares between all
translations. After that mdbook
runs for every translation.
Limitations
- 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.
License
Dependencies
~12–23MB
~333K SLoC