From: Keith Carter Date: 2008-01-29T06:16:08+09:00 Subject: Line breaks in YAML Sorry for all the YAML questions today! Here is my YAML file- foo: this is a test to see if ruby recognizes line breaks Here is my Ruby- Loading development environment (Rails 2.0.2) >> require 'yaml' => [] >> test = YAML::load_file("test.yml") => {"foo"=>"this is a test to see if ruby recognizes line breaks"} >> puts test['foo'] this is a test to see if ruby recognizes line breaks => nil >> Where'd the line breaks go? -- Posted via http://www.ruby-forum.com/.