---
title: "Multilingual content"
---

# Multilingual content

{% subtitle %}

Limedocs supports multilingual websites.

{% endsubtitle %}

{% alert type="tip" %}

Your site default language can be specified in `limedocs.config.js` through the `defaultLanguage` 
property, which defaults to `en` (English).

{% endalert %}

## Specifying the language of a page

You can specify the language of a page either via the front-matter *language* property or by specifying the
language in the filename.

### Using front-matter `language` property

Just specify the language of your page using the front-matter block:

```yml
---
title: Pardon my french
language: fr
---

My page contents....
```

### Using file extension

Just use a language-code suffix for your filename like *my-page.**fr**.md* to specify the file language.

