Jacky Zhao
2022-02-17 9c04ca026676445849081d32efb8e840465994d5
rtl docs
1 files modified
16 ■■■■■ changed files
content/notes/config.md 16 ●●●●● patch | view | raw | blame | history
content/notes/config.md
@@ -47,3 +47,19 @@
More info about partials on [Hugo's website.](https://gohugo.io/templates/partials/)
Still having problems? Checkout our [FAQ and Troubleshooting guide](notes/troubleshooting.md).
## Multilingual
Want to support languages that read from right-to-left (like Arabic)? Hugo (and by proxy, Quartz) supports this natively.
Follow the steps [Hugo provides here](https://gohugo.io/content-management/multilingual/#configure-languages) and modify your `config.toml`
For example:
```toml
defaultContentLanguage = 'ar'
[languages]
  [languages.ar]
    languagedirection = 'rtl'
    title = 'مدونتي'
    weight = 1
```