Commit 9d4e940f authored by Andy Piper's avatar Andy Piper

fixup yaml codeblock

parent 7b4fa22b
...@@ -300,15 +300,15 @@ environments.prod.name=My Cool App ...@@ -300,15 +300,15 @@ environments.prod.name=My Cool App
YAML lists are represented as comma-separated values (useful for simple String values) YAML lists are represented as comma-separated values (useful for simple String values)
and also as property keys with `[index]` dereferencers, for example this YAML: and also as property keys with `[index]` dereferencers, for example this YAML:
```yaml ```yaml
servers: servers:
- dev.bar.com - dev.bar.com
- foo.bar.com - foo.bar.com
``` ```
Would be transformed into these properties: Would be transformed into these properties:
```text ```
servers=dev.bar.com,foo.bar.com servers=dev.bar.com,foo.bar.com
servers[0]=dev.bar.com servers[0]=dev.bar.com
servers[1]=foo.bar.com servers[1]=foo.bar.com
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment