Blame | Last modification | View Log | Download
---test: One Element Mappingbrief: |A mapping with one key/value pairyaml: |foo: barphp: |array('foo' => 'bar')---test: Multi Element Mappingbrief: |More than one key/value pairyaml: |red: baronwhite: wallsblue: berriesphp: |array('red' => 'baron','white' => 'walls','blue' => 'berries',)---test: Values alignedbrief: |Often times human editors of documents will align the values eventhough YAML emitters generally don't.yaml: |red: baronwhite: wallsblue: berriesphp: |array('red' => 'baron','white' => 'walls','blue' => 'berries',)---test: Colons alignedbrief: |Spaces can come before the ': ' key/value separator.yaml: |red : baronwhite : wallsblue : berriesphp: |array('red' => 'baron','white' => 'walls','blue' => 'berries',)