Advertisement
GuillaumeVDN

Untitled

Jul 11th, 2021
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.34 KB | None | 0 0
  1. # Those two are equivalent
  2.  
  3. # This :
  4. section:
  5.   a:
  6.     key: value
  7.     key2: value2
  8.   b:
  9.     key: value
  10.     key2: value2
  11.  
  12. # And this :
  13. section:
  14.   - key: value
  15.     key2: value2
  16.   - key: value
  17.     key2: value2
  18.  
  19. # Also works without spaces to make it more compact :
  20. section:
  21. - key: value
  22.   key2: value2
  23. - key: value
  24.   key2: value2
  25.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement