From 798a847ca7ec241022de02d2226ed46a76d92463 Mon Sep 17 00:00:00 2001 From: xdrm-brackets Date: Sun, 11 Nov 2018 18:27:31 +0100 Subject: [PATCH] update readme : add note why no TOML support yet --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5476c83..ae9aa10 100644 --- a/README.md +++ b/README.md @@ -117,7 +117,8 @@ Configuration files can be written according to some standards or application-sp - [yaml](https://en.wikipedia.org/wiki/YAML) with [go-yaml/yaml](https://github.com/go-yaml/yaml). - [ini](https://en.wikipedia.org/wiki/INI_file) with [go-ini/ini](https://github.com/go-ini/ini). -- [toml](https://en.wikipedia.org/wiki/TOML) with [BurntSushi/toml](https://github.com/BurntSushi/toml). +- [toml](https://en.wikipedia.org/wiki/TOML) with [BurntSushi/toml](https://github.com/BurntSushi/toml). + > not consistent ; overriding a toml file with this can mess with comments and duplicate sections. Also there is type inference to do (strings are surrounded with `"`, there is `true`, `false`, etc) - [nginx configurations](https://docs.nginx.com/nginx/admin-guide/basic-functionality/managing-configuration-files/) with [lytics/confl](https://github.com/lytics/confl). - _and more to come..._