Tâm là động cơ yaml mặc định kể từ ruby 1.9.3tại sao trình thông dịch viên psych yaml thêm ngắt dòng khoảng 80 ký tự?
Tại sao, oh tại sao tâm lý thêm ngắt dòng trong đầu ra của nó? Kiểm tra ví dụ bên dưới.
ruby -v # => ruby 1.9.3p374 (2013-01-15 revision 38858) [x86_64-linux]
require 'yaml'
"this absolutely normal sentence is more than eighty characters long because it IS".to_yaml
# => "--- this absolutely normal sentence is more than eighty characters long because it\n IS\n...\n"
YAML::ENGINE.yamler = 'syck'
"this absolutely normal sentence is more than eighty characters long because it IS".to_yaml
# => "--- this absolutely normal sentence is more than eighty characters long because it IS\n"
Đây là phần trùng lặp của "[Tài liệu về tùy chọn Psych to_yaml?] (Http://stackoverflow.com/questions/9759302/documentation-for-psych-to-yaml-options/9759344)" –