Skip to content
YAML

Flow Style

Inline JSON-like sequences and mappings.

#flow#inline

Code

yaml
# Flow style (inline)
fruits: [apple, banana, cherry]
person: {name: Alice, age: 30}
nested: {a: [1, 2], b: {c: 3}}

# Mixed flow and block
config:
  server: {host: localhost, port: 8080}
  features: [auth, logging, cache]