diff options
Diffstat (limited to '')
-rw-r--r-- | integrations/templates/setup.md | 2 | ||||
-rw-r--r-- | integrations/templates/setup/sample-netdata-config.md | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/integrations/templates/setup.md b/integrations/templates/setup.md index 101f5bcbc..e2318ed85 100644 --- a/integrations/templates/setup.md +++ b/integrations/templates/setup.md @@ -65,7 +65,7 @@ There is no configuration file. | Name | Description | Default | Required | |:----|:-----------|:-------|:--------:| [% for item in entry.setup.configuration.options.list %] -| [[ item.name ]] | [[ item.description ]] | [[ item.default ]] | [[ item.required ]] | +| [[ strfy(item.name) ]] | [[ strfy(item.description) ]] | [[ strfy(item.default_value) ]] | [[ strfy(item.required) ]] | [% endfor %] [% for item in entry.setup.configuration.options.list %] diff --git a/integrations/templates/setup/sample-netdata-config.md b/integrations/templates/setup/sample-netdata-config.md index 429f71167..bff5dcfae 100644 --- a/integrations/templates/setup/sample-netdata-config.md +++ b/integrations/templates/setup/sample-netdata-config.md @@ -1,10 +1,10 @@ The file format is a modified INI syntax. The general structure is: -```toml +```ini [section1] - option 1 = some value - option 2 = some other value + option1 = some value + option2 = some other value [section2] - option 3 = some third value + option3 = some third value ``` |