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:
parent
c06ef10a36
commit
e2f2f4f779
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue