Briefly explain TOML tables (#1576)

* Briefly explain TOML tables

There's a warning about a possible source of errors, but it doesn't give you the relevant information to actually make sense of it. I hope this saves someone a search since I personally had to find this out reading the TOML spec.

Any other ways to phrase this?

* Update configuration.md
This commit is contained in:
Enmanuel de la Nuez 2021-08-03 03:20:34 -04:00 committed by GitHub
parent c06ef10a36
commit e2f2f4f779
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,7 +9,7 @@ It follows the philosophy of paying for only what you need, almost everything is
To change the configuration, edit the `config.toml` file.
If you are not familiar with TOML, have a look at [the TOML spec](https://github.com/toml-lang/toml).
⚠️ If you add keys to your `config.toml`, you must pay attention to which TOML section it belongs to.
⚠️ If you add keys to your `config.toml`, you must pay attention to which TOML section it belongs to. A TOML section starts with a header, e.g. `[search]`, and ends at the next section or EOF.
Here are the current `config.toml` sections:
1. main (unnamed)