File: everything.yaml

package info (click to toggle)
rust-marked-yaml 0.8.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 228 kB
  • sloc: makefile: 4
file content (27 lines) | stat: -rw-r--r-- 516 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# This is an example document which exercises all of the properties of
# the marked YAML parser.  It covers scalars, mappings, and sequences, and
# verifies that everything which *ought* to be supported is.

simple: scalar
boolean1: "true"
boolean2: false
integer: "1234"
float: 12.34
nullvalue: null

mapping:
  nesting: is
  quite:
    quite: possible

plainsequence:
  - simple
  - values
  - are
  - supported

heterogenous:
  - multiple
  - types: of
  - [values, are supported]
  - { such: as, these: values }